You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add Agent Skill setup option for Claude Code
Add Option 3 under Claude Code section showing how to package
AI-DLC as an Agent Skill (https://agentskills.io).
Assembles SKILL.md from existing core-workflow.md with YAML
frontmatter and copies rule details as references. No file
duplication — uses the same aidlc-rules/ content.
Enables /aidlc slash command in Claude Code and is compatible
with other Agent Skills-compliant tools.
Package AI-DLC as an [Agent Skill](https://agentskills.io) for Claude Code. This enables the `/aidlc` slash command and automatic activation on development tasks. Also compatible with other Agent Skills-compliant tools (Cursor, Gemini CLI, OpenCode, etc.).
387
+
388
+
**Unix/Linux/macOS:**
389
+
```bash
390
+
# Create the skill directory
391
+
mkdir -p ~/.claude/skills/aidlc/references
392
+
393
+
# Create SKILL.md with frontmatter + core workflow
394
+
cat >~/.claude/skills/aidlc/SKILL.md << 'EOF'
395
+
---
396
+
name: aidlc
397
+
description: >-
398
+
AI-DLC (AI-Driven Development Life Cycle) adaptive workflow for software
399
+
development. Use when building new features, creating applications,
400
+
refactoring systems, or any software development task that benefits from
401
+
structured planning, requirements analysis, and phased execution with
402
+
quality gates.
403
+
---
404
+
405
+
EOF
406
+
# Append core workflow (replace path references for skill layout)
407
+
sed \
408
+
's|Check these paths in order and use the first one that exists:|The rule detail files are in the `references/` directory relative to this skill:|
409
+
/^\- `\.aidlc-rule-details/d
410
+
/^\- `\.kiro/d
411
+
/^\- `\.amazonq/d
412
+
s|All subsequent rule detail file references.*resolved above\.|All rule detail file references (e.g., `common/process-overview.md`, `inception/workspace-detection.md`) are relative to the `references/` directory.|
0 commit comments