Skip to content

hamr0/agentic-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

179 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Agentic Toolkit

Your Gateway to Vibecoding: AI-Powered Development Made Simple

Discover proven tools and structured frameworks to start vibecoding as a non-technical or semi-technical user. Get essential scripts for Linux environments, learn through Vibecoding 101, and deploy ready-made AI subagents to accelerate your development workflow.

Featuring structured thinking frameworks, skills, and plugins that guide your AI collaboration for better results.

πŸ‘‰ Start Learning Vibecoding 101 - Essential guide for beginners


Core Value: Structured AI Development Made Simple

Lightweight, structured subagents that enforce sequential task execution with built-in verification - not just natural language prompting.

Feature Overview

Category Component Description
Agents 11 Role-Based Specialists Orchestrator, QA, Dev, Architect, UX, Feature Planner, Market Researcher, Context Builder plus 3-phase workflow agents (1-create-prd, 2-generate-tasks, 3-process-task-list)
Skills 10 Core Workflows systematic-debugging, test-driven-development, verification-before-completion, testing-anti-patterns, root-cause-tracing, condition-based-waiting, brainstorming, code-review, skill-creator, docs-builder
Commands 10 Development Tools debug, explain, git-commit, optimize, refactor, review, security, ship, stash, test-generate
Workflows 3-Phase Development PRD Creation β†’ Task Generation β†’ Sequential Execution with automatic routing through digraph state machines
Architecture Token Efficient Progressive disclosure loads ~950 tokens for agent stubs, expands only when invoked
Installation Multiple Options Manual copy-paste (cp -r ai/subagentic/claude/* ~/.claude/) or NPM (npx liteagents)
Verification Built-in Quality Gates TDD enforcement, verification gates before completion, systematic debugging frameworks

Complete & Self-Sufficient

Works standalone out of the box. Optional: Add Superpowers framework for auto-triggering behavioral constraints if desired.

Full Subagent Manual | Install Now


πŸš€ Quick Start

Option 1: NPX (Recommended - No Installation)

npx liteagents

Option 2: NPM Global Install

# Install globally (never use sudo)
npm install -g liteagents

# If permission errors, configure npm first:
mkdir -p ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
source ~/.bashrc

# Run installer
liteagents

Option 3: Manual Installation

# Clone the repository
git clone https://github.com/hamr0/agentic-toolkit.git && cd agentic-toolkit

# Install subagents for your platform (choose one)
cp -rv ai/subagentic/claude/* ~/.claude/          # Claude Code
cp -rv ai/subagentic/opencode/* ~/.config/opencode/  # OpenCode
cp -rv ai/subagentic/droid/* ~/.factory/         # Droid
cp -rv ai/subagentic/ampcode/* ~/.config/amp/    # Amp

Vibecoding 101 | Subagent Manual | Development Tools


πŸ“ What's Included

Development Tools

  • Interactive Installer: tools/dev_tools_menu.sh - Choose and install Linux tools (Tmux, Neovim, etc.)
  • Automation Scripts: Pre-configured setups for development environments
  • Complete Guide: tools/tools_guide.md - Documentation for all tools

Vibecoding 101 Guide

  • Beginner's Course: docs/vibecoding-101-guide.md - Step-by-step guide for non-technical users
  • Core Concepts: Tool selection, AI collaboration, avoiding common pitfalls
  • Practical Examples: Real-world vibecoding scenarios and best practices

Subagent Kits - Platform Support

Installation Options:

  • Manual: cp -rv ai/subagentic/<platform>/* <install-path>/ (see table below)
  • NPM Package: npx liteagents - Auto-updates, no cloning (repo)
  • πŸ“– Subagentic Manual - Token loads, progressive disclosure, complete reference
Platform Agents Skills/Commands Install Path Project Path Source Path
Claude Code 11 agents 10 skills + 12 commands ~/.claude/ ./.claude/ ai/subagentic/claude/
OpenCode 11 agents 22 commands ~/.config/opencode/ ./.opencode/ ai/subagentic/opencode/
Droid 11 droids 22 commands ~/.factory/ ./.factory/ ai/subagentic/droid/
Amp 11 agents 22 commands ~/.config/amp/ ./.amp/ ai/subagentic/ampcode/

Usage: Invoke with @agent-name or As agent-name, ... (Claude/OpenCode/Amp) or invoke droid agent-name (Droid). Commands via /command-name.

Curated Resources

  • AI Marketplace (ai/marketplace/): 90+ reusable subagents (droids), plugins, skills, 200+ MCP servers, workflows
  • Ollama Local LLM (ai/customize/ollama): Ollama configuration for OpenCode/Droid
  • Claude Code Switcher (ai/customize/claude-switcher): Use GLM LLM/MCP on Claude Code
  • BYOK Config (ai/customize/byok): Use Synthetic, GLM on OpenCode/Droid
  • Agent Best Practices (ai/customize/config): Agent tweaks and guidelines

πŸ”— Optional: Superpowers Integration

Agentic Toolkit is complete and self-sufficient. Optionally add Superpowers for auto-triggering behavioral constraints (TDD must run first, verification before completion, fresh subagent isolation per task).


πŸ“‚ Directory Structure

agentic-toolkit/
β”œβ”€β”€ ai/
β”‚   β”œβ”€β”€ subagentic/              # Subagent kits for all platforms
β”‚   β”‚   β”œβ”€β”€ claude/              # 11 agents + 10 skills + 10 commands
β”‚   β”‚   β”œβ”€β”€ opencode/            # 11 agents + 20 commands
β”‚   β”‚   β”œβ”€β”€ droid/               # 11 droids + 20 commands
β”‚   β”‚   └── ampcode/             # 11 agents + 10 skills + 10 commands
β”‚   β”œβ”€β”€ customize/               # Platform customization configs
β”‚   β”‚   β”œβ”€β”€ byok/                # Bring Your Own Key configs
β”‚   β”‚   β”œβ”€β”€ claude-switcher/     # Claude Code LLM/MCP switcher
β”‚   β”‚   β”œβ”€β”€ config/              # Agent best practices
β”‚   β”‚   β”œβ”€β”€ memcp/               # Memory MCP server
β”‚   β”‚   β”œβ”€β”€ ollama/              # Local LLM configs
β”‚   β”‚   └── skill-to-command/    # Skill conversion tools
β”‚   └── marketplace/             # Curated AI resources
β”‚       β”œβ”€β”€ agents/              # 90+ specialized subagents
β”‚       └── workflows/           # Workflow patterns
β”œβ”€β”€ tools/                       # Development utilities
β”‚   β”œβ”€β”€ dev_tools_menu.sh        # Interactive installer
β”‚   β”œβ”€β”€ master_tmux_setup.sh     # Tmux automation
β”‚   β”œβ”€β”€ master_neovim_setup.sh   # Neovim automation
β”‚   └── tools_guide.md           # Tools documentation
β”œβ”€β”€ docs/                        # Documentation
β”‚   └── vibecoding-101-guide.md  # Beginner's guide
└── env/                         # Environment configs

🎯 Who Is This For?

This toolkit is designed for anyone wanting to maximize AI-powered development:

βœ… Vibecoders - Non-coders building with AI
βœ… Semi-technical users - Some coding background, learning to leverage AI
βœ… Technical non-coders - Strong technical knowledge without coding experience
βœ… Developers - Wanting structured, proven AI workflows
βœ… Teams - Needing standardized AI collaboration patterns

Vibecoding 101 Guide - Learn how to build software with AI without being a traditional coder.


πŸ“– Documentation


πŸ†˜ Support & Community

Getting Help


🀝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

Quick Guide

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

What to contribute: Subagent improvements, tool scripts, documentation


πŸ“„ License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.


Built with ❀️ for the vibecoding community | LinkedIn

Ready to vibecode? Follow the Quick Start above!

About

A ready-to-use suite of tools for AI-driven development, featuring agent workflows, automation scripts, and easy environment setup to boost productivity and streamline project management.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors