From shipshitdev-library
Scaffolds .agents/ folder structure for AI-first development, including session tracking, task management, coding standards, ADRs, security checklists, and configs for .claude, .codex, .cursor. Use when starting AI-assisted projects.
npx claudepluginhub shipshitdev/skillsThis skill uses the workspace's default tool permissions.
Create a comprehensive `.agents/` folder structure for AI-first development workflows.
assets/agent-configs/claude/agents/senior-backend-engineer.mdassets/agent-configs/claude/agents/senior-frontend-engineer.mdassets/agent-configs/claude/commands/bug.mdassets/agent-configs/claude/commands/clean.mdassets/agent-configs/claude/commands/code-review.mdassets/agent-configs/claude/commands/commit-summary.mdassets/agent-configs/claude/commands/end.mdassets/agent-configs/claude/commands/inbox.mdassets/agent-configs/claude/commands/new-session.mdassets/agent-configs/claude/commands/quick-fix.mdassets/agent-configs/claude/commands/refactor-code.mdassets/agent-configs/claude/commands/start.mdassets/agent-configs/claude/commands/task.mdassets/agent-configs/claude/commands/validate.mdassets/agent-configs/claude/rules/ai-agent-behavior.mdassets/agent-configs/claude/rules/claude-4-behavior.mdassets/agent-configs/claude/rules/coding-standards.mdassets/agent-configs/claude/rules/session-workflow.mdassets/agent-configs/claude/rules/user-preferences.mdassets/agent-configs/cursor/commands/README.mdProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Create a comprehensive .agents/ folder structure for AI-first development workflows.
This skill scaffolds a complete AI agent documentation system including:
Use this skill when:
Run the scaffold script:
python3 scripts/scaffold.py --help
# Basic usage
python3 scripts/scaffold.py \
--root /path/to/project \
--name "My Project"
# With custom options
python3 scripts/scaffold.py \
--root /path/to/project \
--name "My Project" \
--tech "nextjs,nestjs" \
--allow-outside
.agents/
├── README.md # Navigation hub
├── SYSTEM/
│ ├── README.md
│ ├── RULES.md # Coding standards
│ ├── ARCHITECTURE.md # What's implemented
│ ├── SUMMARY.md # Current state
│ ├── PRD.md # Product Requirements Document
│ ├── ENTITIES.md # Entity documentation
│ ├── ai/
│ │ ├── SESSION-QUICK-START.md
│ │ ├── SESSION-DOCUMENTATION-PROTOCOL.md
│ │ └── USER-PREFERENCES.md
│ ├── architecture/
│ │ ├── DECISIONS.md # ADRs
│ │ └── PROJECT-MAP.md
│ ├── critical/
│ │ ├── CRITICAL-NEVER-DO.md
│ │ └── CROSS-PROJECT-RULES.md
│ └── quality/
│ └── SECURITY-CHECKLIST.md
├── TASKS/
│ ├── README.md
│ └── INBOX.md
├── SESSIONS/
│ ├── README.md
│ └── TEMPLATE.md
├── SOP/
│ └── README.md
├── EXAMPLES/
│ └── README.md
└── FEEDBACK/
└── README.md
.claude/
├── commands/ # Slash commands (project-specific)
│ ├── start.md
│ ├── end.md
│ ├── new-session.md
│ ├── commit-summary.md
│ ├── code-review.md
│ ├── bug.md
│ ├── quick-fix.md
│ ├── refactor-code.md
│ ├── inbox.md
│ ├── task.md
│ ├── validate.md
│ └── clean.md
├── agents/ # Specialized agents (project-specific)
│ ├── senior-backend-engineer.md
│ └── senior-frontend-engineer.md
└── skills/ # Project-specific skills
.codex/
├── commands/
└── skills/
.cursor/
└── commands/
Note: Agent configs (agents/, commands/) are copied from the installed library bundle so projects get the latest version. Rules are not copied because they are expected to be managed at the user or repo level to avoid duplication and drift.
AGENTS.md - Points to .agents/README.mdCLAUDE.md - Claude-specific entry pointCODEX.md - Codex-specific entry point.editorconfig - Editor configurationSYSTEM/, TASKS/, SESSIONS/)README.md, RULES.md), kebab-case for othersYYYY-MM-DD.mdAfter scaffolding, customize:
SYSTEM/PRD.md - Fill in your product requirements (use with fullstack-workspace-init)SYSTEM/ENTITIES.md - Document your data entitiesSYSTEM/RULES.md - Add project-specific coding standardsSYSTEM/ARCHITECTURE.md - Document your architectureSYSTEM/critical/CRITICAL-NEVER-DO.md - Add project-specific violationsSOP/ - Add your standard operating procedures.claude/rules/ - Add project-specific rules.claude/commands/ - Add project-specific commandsThis skill integrates with:
| Skill | How It Works Together |
|---|---|
fullstack-workspace-init | Use PRD.md to define requirements before scaffolding |
linter-formatter-init | Sets up quality tooling in the scaffolded project |
husky-test-coverage | Enforces test coverage in pre-commit hooks |