๐ŸŽฏ

internal-comms

๐ŸŽฏSkill

from amrhas82/agentic-toolkit

VibeIndex|
What it does

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...

๐Ÿ“ฆ

Part of

amrhas82/agentic-toolkit(16 items)

internal-comms

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.

๐ŸŽฏ
algorithmic-art๐ŸŽฏSkill

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

๐ŸŽฏ
root-cause-tracing๐ŸŽฏSkill

Skill

๐ŸŽฏ
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.