Skip to content

Commit 65613ee

Browse files
jwaldripclaude
andcommitted
feat: migrate AI-DLC plugin to repository root
Migrate the AI-DLC methodology plugin from patterns/ai-dlc in the han repository to this standalone repository. Files are now at the repository root to support standard GitHub plugin installation (thebushidocollective/ai-dlc). Key changes: - Move all plugin files (.claude-plugin, commands, skills, hats, hooks, lib) to root - Update plugin.json repository URL to thebushidocollective/ai-dlc - Update homepage to ai-dlc.dev - Update README with comprehensive documentation and installation instructions - Update package.json workspaces to only include website - Remove old plugin/ directory placeholder Installation now works via: - han plugin install thebushidocollective/ai-dlc - /install-github-plugin thebushidocollective/ai-dlc Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 828e515 commit 65613ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+9613
-64
lines changed

.claude-plugin/hooks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"description": "AI-DLC hooks registered directly with Claude Code for structured responses",
3+
"hooks": {
4+
"PreToolUse": [
5+
{
6+
"matcher": "EnterPlanMode",
7+
"hooks": [
8+
{
9+
"type": "command",
10+
"command": "bash \"${CLAUDE_LOCAL_PLUGIN_DIR}/hooks/redirect-plan-mode.sh\"",
11+
"timeout": 5000
12+
}
13+
]
14+
}
15+
]
16+
}
17+
}

.claude-plugin/plugin.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "ai-dlc",
3+
"version": "1.1.0",
4+
"description": "AI-DLC 2026 methodology - iterative AI-driven development with hat-based workflows, completion criteria, and automatic context preservation",
5+
"author": {
6+
"name": "The Bushido Collective",
7+
"url": "https://thebushido.co"
8+
},
9+
"homepage": "https://ai-dlc.dev",
10+
"repository": "https://github.com/thebushidocollective/ai-dlc",
11+
"license": "Apache-2.0",
12+
"keywords": [
13+
"ai-dlc",
14+
"methodology",
15+
"workflow",
16+
"iteration",
17+
"completion-criteria",
18+
"hat-switching",
19+
"context-preservation",
20+
"human-ai-collaboration"
21+
]
22+
}

CHANGELOG.md

Lines changed: 524 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)