From project-standards
Use when editing agentsmd files, creating skills/agents/rules, or working in ai-assistant-instructions
npx claudepluginhub jacobpevans/claude-code-plugins --plugin project-standardsThis skill uses the workspace's default tool permissions.
```text
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
agentsmd/ # Single source of truth
├── AGENTS.md # Main entry point
├── rules/ # Auto-load every session (via .claude/rules symlink)
├── skills/ # On-demand (via .claude/skills symlink)
├── agents/ # Task subagents (via .claude/agents symlink)
└── workflows/ # Development workflow docs
.copilot/, .claude/, .gemini/ # Vendor dirs — symlinks only, no duplicates
| Tier | Location | Purpose |
|---|---|---|
| Agents | .claude/agents/ | Task execution — single-responsibility workers |
| Skills | agentsmd/skills/ | Canonical patterns — reusable rules/decision trees |
Agents reference skills for patterns. Skills define the "right way" to do something. Agents do NOT duplicate skill logic — they reference it.
noun-pattern (e.g., permission-patterns)noun-doer (e.g., permissions-analyzer)Skill:
---
name: skill-name
description: Pattern description
---
Agent:
---
name: agent-name
description: Action-focused description
model: haiku # or sonnet/opus
author: JacobPEvans
allowed-tools: [list of tools]
---
@path/to/file to compose content inline.
Use markdown links only for conditional "see X if relevant" references..claude/rules/ auto-load.Vendor directories contain symlinks only. All canonical content lives in
agentsmd/. DRY — never duplicate across vendors.
Rules in agentsmd/rules/ auto-load every session via .claude/rules
symlink. Keep rules focused and under 1,000 tokens.