🎯

brainstorming

🎯Skill

from amrhas82/agentic-toolkit

VibeIndex|
What it does

Generates structured, systematic ideas and solutions for development challenges by applying methodical brainstorming techniques and frameworks to explore multiple potential approaches.

πŸ“¦

Part of

amrhas82/agentic-toolkit(16 items)

brainstorming

Installation

npxRun with npx
npx liteagents
npm installInstall npm package
npm install -g liteagents
git cloneClone repository
git clone https://github.com/amrhas82/agentic-toolkit.git && cd agentic-toolkit
πŸ“– Extracted from docs: amrhas82/agentic-toolkit
3Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# 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](docs/vibecoding-101-guide.md) - 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](https://github.com/obra/superpowers) framework for auto-triggering behavioral constraints if desired.

[Full Subagent Manual](ai/subagentic/subagentic-manual.md) | [Install Now](#-quick-start)

---

πŸš€ Quick Start

Option 1: NPX (Recommended - No Installation)

```bash

npx liteagents

```

Option 2: NPM Global Install

```bash

# 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

```bash

# Clone the repository

git clone https://github.com/amrhas82/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](docs/vibecoding-101-guide.md) | [Subagent Manual](ai/subagentic/subagentic-manual.md) | [Development Tools](tools/dev_tools_menu.sh)

---

πŸ“ 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//* / (see table below)
  • NPM Package: npx liteagents - Auto-updates, no cloning ([repo](https://github.com/amrhas82/liteagents))
  • [πŸ“– Subagentic Manual](ai/subagentic/subagentic-manual.md) - Token loads, progressive disclosure, complete reference

| Platform | Agents | Skills/Commands | Install Path | Source Path |

|----------|--------|----------------------|--------------|-------------|

| Claude Code | 11 agents | 10 skills + 10 commands | ~/.claude/ | ai/subagentic/claude/ |

| OpenCode | 11 agents | 20 commands | ~/.config/opencode/ | ai/subagentic/opencode/ |

| Droid | 11 droids | 20 commands | ~/.factory/ | ai/subagentic/droid/ |

| Amp | 11 agents | 10 skills + 10 commands | ~/.config/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](https://github.com/obra/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](docs/vibecoding-101.md) - Learn how to build software with AI without being a traditional coder.

---

πŸ“– Documentation

  • [Vibecoding 101](docs/vibecoding-101.md) - Beginner's guide to AI-powered development
  • [Subagent Manual](ai/subagentic/subagentic-manual.md) - Complete agent reference with token loads
  • [Tools Guide](tools/tools_guide.md) - Development tool

More from this repository10

🎯
mcp-builder🎯Skill

Based on the repository's README and context, the "mcp-builder" Claude Code skill likely: Generates modular, structured control flow configurations for multi-phase agent workflows, enabling system...

🎯
theme-factory🎯Skill

Skill

🎯
slack-gif-creator🎯Skill

Creates animated GIFs from Slack messages or conversations, allowing users to quickly generate visual summaries or highlights from Slack communication.

🎯
docx🎯Skill

Converts, manipulates, or processes Microsoft Word (.docx) documents programmatically, likely enabling tasks like text extraction, document generation, or formatting modifications within the Agenti...

🎯
artifacts-builder🎯Skill

Generates, structures, and manages code artifacts, templates, and project scaffolding through systematic, AI-guided artifact creation workflows.

🎯
internal-comms🎯Skill

Based on the repository's README and context, the "internal-comms" Claude Code skill likely: Facilitates structured communication and coordination between different AI agents or team members, ensu...

🎯
algorithmic-art🎯Skill

Generates algorithmic art by programmatically creating visual designs using mathematical rules, computational techniques, and generative art principles.

🎯
brand-guidelines🎯Skill

Generates comprehensive brand identity guidelines by analyzing existing brand assets, defining core visual and messaging principles, and creating a structured reference document for consistent bran...

🎯
test-driven-development🎯Skill

Guides developers through creating automated tests before writing actual code, ensuring test coverage, validating requirements, and driving implementation through systematic test-first methodology.

🎯
systematic-debugging🎯Skill

Systematically diagnoses software issues by tracing root causes, identifying error patterns, and methodically breaking down complex debugging scenarios into manageable, sequential investigation steps.