Agent Skill
2/7/2026

using-superpowers

Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions

D
darthlinuxer
0GitHub Stars
1Views
npx skills add darthlinuxer/Agentic-Skills

SKILL.md

Nameusing-superpowers
DescriptionUse when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions

Agentic-Skills

A multi-platform agentic ecosystem for AI-assisted development. It provides commands (or workflows), an orchestrator, specialist agents, and reusable skills so you can plan, implement, fix, test, deploy, and document projects in a consistent way across Cursor, Claude Code, and Google Anthropic Agent.


Quick Start

  1. Pick your platform — Cursor (.cursor/commands/), Claude Code (.claude/commands/), or Google Anthropic Agent (.agent/workflows/).
  2. Run a command — e.g. /plan, /implement, /fix, or /docs from the command palette or chat.
  3. Be specific — e.g. /plan e-commerce site with cart and auth. The orchestrator routes to the right agents and skills.

What this repo is

  • Entry points: 17 commands (Cursor/Claude) or workflows (Agent) that you invoke—e.g. /plan, /implement, /fix, /docs.
  • Orchestrator: A single coordinator per platform that receives your request by mode, selects the right agents and skills, and runs the workflow. You don’t call agents or skills directly.
  • Agents: Domain specialists (e.g. backend-specialist, frontend-specialist, documentation-writer, test-engineer) and process roles (e.g. project-planner, verifier). Each has its own skills and a domain color so the orchestrator (and logs) can see at a glance which area of responsibility is active.
  • Skills: Reusable guidance and patterns (e.g. test-driven-development, writing-plans, frontend-design) used by the orchestrator and agents. Skills never call commands or the orchestrator.

Contract: You use only the entry points (commands or workflows). They route to the orchestrator; the orchestrator uses agents and skills. No cycles: skills don’t call commands or the orchestrator; agents don’t call commands.


Agent domains and colors

Agents are grouped by domain and share a basic color across all three platforms. This keeps roles non-overlapping and makes it easy for the orchestrator (and future colored logs) to see who owns what:

DomainColorCursor / Claude / Agent agents (examples)
Orchestration & planningblue / violetorchestrator, project-planner, product-manager
Discovery & legacycyanexplorer-agent, code-archaeologist
Verification & QAambertest-engineer, verifier (Cursor)
Securityredsecurity-auditor, penetration-tester
Backend & datagreenbackend-specialist, database-architect
Frontendindigofrontend-specialist
DevOps & infraslatedevops-engineer
Mobilepinkmobile-developer
Documentationzincdocumentation-writer
Performancelimeperformance-optimizer
SEO / marketingyellowseo-specialist
Gamesemeraldgame-developer

On each platform, agents declare this in frontmatter (for example color: green on backend-specialist), and the orchestrator never asks an agent to work outside its domain.

Features

  • Plan & create — Task breakdown, agent/skill assignments; new apps or modules from plan to implementation.
  • Implement, fix & debug — Features and bugfixes with tests; systematic root-cause analysis.
  • Test & review — Generate and run tests; multi-agent code review.
  • Deploy & operate — Staging/production deployment; preview server and status.
  • Document — Create or update docs in sync with the codebase.
  • Explore & design — Brainstorm, enhance features, explain concepts, UI/UX design intelligence.

Platforms and entry points

PlatformEntry pathHow you start
Cursor.cursor/commands/Run a command (e.g. /plan, /implement) from the Cursor command palette or chat.
Claude.claude/commands/Run a command in Claude Code; it routes to the agent-orchestrator.
Agent (Google Anthropic).agent/workflows/Invoke a workflow; workflows are the entry point (no commands directory).

Same 17 entry names on all platforms:

Command / workflowTypical use
/planCreate or refine a plan (task breakdown, agent/skill assignments). No code.
/createNew app or major module; full lifecycle from plan to initial implementation.
/implementImplement features from an existing plan.
/fixFix bugs and regressions with tests.
/debugSystematic debugging and root-cause analysis.
/refactorRefactor without changing behavior.
/testGenerate and run tests, improve coverage.
/reviewMulti-agent code review.
/docsCreate or update documentation (sync with code).
/deployCoordinate deployment (staging/production).
/statusReport project/agent/preview status (read-only).
/previewManage preview server (start, stop, status, health).
/brainstormExplore options before committing to implementation.
/enhanceAdd or update features in an existing app.
/explainExplain code or concepts (educator mode).
/ui-ux-pro-maxDesign intelligence (UI/UX, design system).
/orchestrateMulti-domain orchestration; orchestrator chooses agents/skills.

You can chain modes (e.g. /brainstorm then /plan then /implement) for one task.


How to use the ecosystem

  1. Start with a command (or workflow).
    In Cursor or Claude, use the command (e.g. /plan, /implement, /docs). On Agent, invoke the matching workflow. Do not call the orchestrator or agents directly.

  2. Be specific.
    Example: /plan e-commerce site with cart and auth or /docs add README for the API module. The orchestrator will route to the right agents and skills.

  3. If your prompt has no command.
    The workspace rule is: figure out which command(s) apply and mention them (e.g. “Use /plan then /implement”). Commands live in the platform’s commands (or workflows) directory.

  4. Plans.
    Plans are written to docs/PLAN-{task-slug}.md. After /plan, use /create or /implement to execute; the orchestrator uses the plan to assign work.

  5. Documentation.
    Use /docs for anything doc-related; the orchestrator uses the documentation-writer agent and doc-related skills so docs stay aligned with the codebase.


Directory layout (per platform)

Layout is parallel across the three platforms; only the top-level folder and “commands vs workflows” differ.

DirectoryPurpose
.cursor/Cursor IDE: commands, agents, rules, skills, scripts.
.claude/Claude Code: commands, agents, skills, scripts.
.agent/Google Anthropic Agent: workflows (no commands dir), agents, skills, scripts.
docs/Project docs and plans (e.g. docs/PLAN-*.md).

Under each platform:

  • commands/ (or workflows/ for .agent/) — Entry points; each file has a Routing section to the orchestrator and a mode.
  • agents/ — Orchestrator plus specialist agents (e.g. orchestrator.md, documentation-writer.md, backend-specialist.md). Cursor also has verifier.md.
  • skills/ — Reusable skills (e.g. documentation-templates, writing-plans, test-driven-development). Agents reference skills; skills do not call commands or the orchestrator.
  • rules/ (Cursor/Agent) — Workspace rules (e.g. entry-point, coding-style, git).
  • scripts/ — Helper scripts (e.g. preview, verification).

Validations

From the repo root, run ./run-validations.sh to execute link validation, dangling skills check, platform isolation, and docs secrets check. Reports are written to .reports/.


More detail

Orchestrator and modes: See the Command Modes (or Workflow Modes) table in the platform’s orchestrator:
.cursor/agents/orchestrator.md, .claude/agents/agent-orchestrator.md, .agent/agents/orchestrator.md.

  • Skills: Browsable under .cursor/skills/ (and .claude/skills/, .agent/skills/). Each skill has a SKILL.md describing when and how it’s used.

Contributing

Open an issue or pull request on the repository.


License

See LICENSE.

Skills Info
Original Name:using-superpowersAuthor:darthlinuxer