codingbuddy-claude-plugin 0.0.0-canary.20260117144032.g683474a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ {
2
+ "$schema": "https://anthropic.com/claude-code/plugin.schema.json",
3
+ "name": "codingbuddy",
4
+ "version": "0.0.0-canary.20260117144032.g683474a",
5
+ "description": "Multi-AI Rules for consistent coding practices - PLAN/ACT/EVAL workflow, specialist agents, and reusable skills for systematic development",
6
+ "author": {
7
+ "name": "JeremyDev87",
8
+ "url": "https://github.com/JeremyDev87"
9
+ },
10
+ "homepage": "https://github.com/JeremyDev87/codingbuddy",
11
+ "repository": "https://github.com/JeremyDev87/codingbuddy",
12
+ "license": "MIT",
13
+ "keywords": [
14
+ "coding-rules",
15
+ "tdd",
16
+ "workflow",
17
+ "plan-act-eval",
18
+ "agents",
19
+ "skills",
20
+ "mcp",
21
+ "augmented-coding"
22
+ ]
23
+ }
package/README.md ADDED
@@ -0,0 +1,81 @@
1
+ # CodingBuddy Claude Code Plugin
2
+
3
+ > Version 0.0.0-canary.20260117144032.g683474a
4
+
5
+ Multi-AI Rules for consistent coding practices - PLAN/ACT/EVAL workflow, specialist agents, and reusable skills for systematic development.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ # Via npm
11
+ npm install codingbuddy-claude-plugin
12
+
13
+ # Or via Claude Code
14
+ claude plugin add codingbuddy
15
+ ```
16
+
17
+ ## Features
18
+
19
+ ### Workflow Modes
20
+ - **PLAN**: Design implementation approach with TDD
21
+ - **ACT**: Execute changes following quality standards
22
+ - **EVAL**: Evaluate code quality and suggest improvements
23
+ - **AUTO**: Autonomous PLAN → ACT → EVAL cycle
24
+
25
+ ### Commands
26
+ - `/plan` - Enter PLAN mode
27
+ - `/act` - Enter ACT mode
28
+ - `/eval` - Enter EVAL mode
29
+ - `/auto` - Enter AUTO mode
30
+ - `/checklist` - Generate contextual checklists
31
+
32
+ ### Specialist Agents
33
+ 29 specialist agents for different domains:
34
+ - Security, Performance, Accessibility
35
+ - Architecture, Testing, Code Quality
36
+ - Frontend, Backend, DevOps
37
+ - And more...
38
+
39
+ ### Skills
40
+ Reusable workflows for consistent development:
41
+ - Test-Driven Development
42
+ - Systematic Debugging
43
+ - API Design
44
+ - Refactoring
45
+ - And more...
46
+
47
+ ## MCP Integration (Required)
48
+
49
+ This plugin requires the CodingBuddy MCP server for full functionality:
50
+
51
+ ```bash
52
+ npm install -g codingbuddy
53
+ ```
54
+
55
+ The MCP server provides:
56
+ - Agents, commands, and skills from `packages/rules/.ai-rules/` (single source of truth)
57
+ - Checklists and specialist agent recommendations
58
+ - Context management for PLAN/ACT/EVAL workflow
59
+
60
+ ## Architecture
61
+
62
+ ```
63
+ packages/rules/.ai-rules/ ← Single source of truth (agents, skills, rules)
64
+ ↓ (MCP protocol)
65
+ packages/claude-code-plugin/ ← Thin plugin (manifest + MCP configuration)
66
+ ```
67
+
68
+ This architecture ensures:
69
+ - **No duplication**: All definitions live in one place
70
+ - **DRY principle**: Changes only need to be made once
71
+ - **Single source of truth**: `packages/rules/.ai-rules/` is the canonical source
72
+
73
+ ## Documentation
74
+
75
+ - [Core Rules](https://github.com/JeremyDev87/codingbuddy/tree/master/packages/rules/.ai-rules/rules)
76
+ - [Agents Guide](https://github.com/JeremyDev87/codingbuddy/tree/master/packages/rules/.ai-rules/agents)
77
+ - [Skills Guide](https://github.com/JeremyDev87/codingbuddy/tree/master/packages/rules/.ai-rules/skills)
78
+
79
+ ## License
80
+
81
+ MIT
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "codingbuddy-claude-plugin",
3
+ "version": "0.0.0-canary.20260117144032.g683474a",
4
+ "description": "Claude Code Plugin for CodingBuddy - PLAN/ACT/EVAL workflow, specialist agents, and reusable skills",
5
+ "author": "JeremyDev87",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/JeremyDev87/codingbuddy.git",
10
+ "directory": "packages/claude-code-plugin"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/JeremyDev87/codingbuddy/issues"
14
+ },
15
+ "homepage": "https://github.com/JeremyDev87/codingbuddy#readme",
16
+ "keywords": [
17
+ "claude-code",
18
+ "claude-code-plugin",
19
+ "ai",
20
+ "coding-assistant",
21
+ "mcp",
22
+ "workflow",
23
+ "agents",
24
+ "skills",
25
+ "tdd",
26
+ "plan-act-eval"
27
+ ],
28
+ "files": [
29
+ ".claude-plugin",
30
+ ".mcp.json",
31
+ "README.md"
32
+ ],
33
+ "scripts": {
34
+ "build": "ts-node scripts/build.ts --mode=production",
35
+ "build:dev": "ts-node scripts/build.ts --mode=development",
36
+ "sync-version": "node scripts/sync-version.js",
37
+ "prebuild": "npm run sync-version",
38
+ "postinstall": "echo '\\n[CodingBuddy Plugin] For full MCP tools support, install codingbuddy globally:\\n npm install -g codingbuddy\\n\\nDocumentation: https://github.com/JeremyDev87/codingbuddy\\n'",
39
+ "prepublishOnly": "npm run build",
40
+ "lint": "eslint src/ scripts/",
41
+ "typecheck": "tsc --noEmit",
42
+ "circular": "madge --circular --extensions ts src/",
43
+ "format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "test:coverage": "vitest run --coverage"
47
+ },
48
+ "peerDependencies": {
49
+ "codingbuddy": "^0.0.0"
50
+ },
51
+ "peerDependenciesMeta": {
52
+ "codingbuddy": {
53
+ "optional": true
54
+ }
55
+ },
56
+ "devDependencies": {
57
+ "@eslint/js": "^9.39.2",
58
+ "@types/node": "^20.10.0",
59
+ "@typescript-eslint/eslint-plugin": "^8.20.0",
60
+ "@typescript-eslint/parser": "^8.20.0",
61
+ "@vitest/coverage-v8": "^2.1.8",
62
+ "codingbuddy-rules": "0.0.0-canary.20260117144032.g683474a",
63
+ "eslint": "^9.39.2",
64
+ "eslint-config-prettier": "^10.1.8",
65
+ "globals": "^16.1.0",
66
+ "madge": "^8.0.0",
67
+ "prettier": "^3.7.4",
68
+ "ts-node": "^10.9.1",
69
+ "typescript": "^5.1.3",
70
+ "vitest": "^2.1.8"
71
+ }
72
+ }