codingbuddy-rules 2.4.1 → 3.0.1

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.
Files changed (37) hide show
  1. package/.ai-rules/CHANGELOG.md +122 -0
  2. package/.ai-rules/agents/README.md +527 -11
  3. package/.ai-rules/agents/architecture-specialist.json +14 -1
  4. package/.ai-rules/agents/backend-developer.json +14 -1
  5. package/.ai-rules/agents/devops-engineer.json +24 -1
  6. package/.ai-rules/agents/event-architecture-specialist.json +720 -0
  7. package/.ai-rules/agents/frontend-developer.json +14 -1
  8. package/.ai-rules/agents/integration-specialist.json +11 -0
  9. package/.ai-rules/agents/migration-specialist.json +677 -0
  10. package/.ai-rules/agents/observability-specialist.json +748 -0
  11. package/.ai-rules/agents/performance-specialist.json +24 -1
  12. package/.ai-rules/agents/security-specialist.json +27 -15
  13. package/.ai-rules/agents/test-strategy-specialist.json +14 -1
  14. package/.ai-rules/rules/core.md +25 -0
  15. package/.ai-rules/skills/README.md +35 -0
  16. package/.ai-rules/skills/database-migration/SKILL.md +531 -0
  17. package/.ai-rules/skills/database-migration/expand-contract-patterns.md +314 -0
  18. package/.ai-rules/skills/database-migration/large-scale-migration.md +414 -0
  19. package/.ai-rules/skills/database-migration/rollback-strategies.md +359 -0
  20. package/.ai-rules/skills/database-migration/validation-procedures.md +428 -0
  21. package/.ai-rules/skills/dependency-management/SKILL.md +381 -0
  22. package/.ai-rules/skills/dependency-management/license-compliance.md +282 -0
  23. package/.ai-rules/skills/dependency-management/lock-file-management.md +437 -0
  24. package/.ai-rules/skills/dependency-management/major-upgrade-guide.md +292 -0
  25. package/.ai-rules/skills/dependency-management/security-vulnerability-response.md +230 -0
  26. package/.ai-rules/skills/incident-response/SKILL.md +373 -0
  27. package/.ai-rules/skills/incident-response/communication-templates.md +322 -0
  28. package/.ai-rules/skills/incident-response/escalation-matrix.md +347 -0
  29. package/.ai-rules/skills/incident-response/postmortem-template.md +351 -0
  30. package/.ai-rules/skills/incident-response/severity-classification.md +256 -0
  31. package/.ai-rules/skills/performance-optimization/CREATION-LOG.md +87 -0
  32. package/.ai-rules/skills/performance-optimization/SKILL.md +76 -0
  33. package/.ai-rules/skills/performance-optimization/documentation-template.md +70 -0
  34. package/.ai-rules/skills/pr-review/SKILL.md +768 -0
  35. package/.ai-rules/skills/refactoring/SKILL.md +192 -0
  36. package/.ai-rules/skills/refactoring/refactoring-catalog.md +1377 -0
  37. package/package.json +1 -1
@@ -5,6 +5,128 @@ All notable changes to the Multi-AI Coding Assistant Common Rules System will be
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.0.0] - 2026-01-17
9
+
10
+ ### Added
11
+
12
+ - **Claude Code Plugin** (`codingbuddy-claude-plugin`)
13
+ - Native skill invocation for Claude Code
14
+ - PLAN/ACT/EVAL workflow integration
15
+ - Specialist agents support
16
+ - Install via `npm install codingbuddy-claude-plugin`
17
+
18
+ - **New Skills (6 skills)**
19
+ - `performance-optimization`: Profiling-first optimization workflow
20
+ - `database-migration`: Zero-downtime schema changes with expand-contract patterns
21
+ - `dependency-management`: Systematic package updates, CVE response, license compliance
22
+ - `incident-response`: Organizational incident handling with severity classification
23
+ - `pr-review`: Systematic, evidence-based PR review with anti-sycophancy principles
24
+ - `refactoring`: Tidy First structured refactoring workflow
25
+
26
+ - **New Domain Specialists (4 agents)**
27
+ - `migration-specialist`: Strangler Fig, legacy modernization, zero-downtime migrations
28
+ - `observability-specialist`: OpenTelemetry, distributed tracing, SLI/SLO frameworks
29
+ - `event-architecture-specialist`: Message queues, Saga patterns, real-time communication
30
+ - `integration-specialist`: External API integrations, retry strategies, circuit breakers
31
+
32
+ - **Context Document System**
33
+ - Fixed file `docs/codingbuddy/context.md` persists PLAN → ACT → EVAL context
34
+ - Survives context compaction in long conversations
35
+ - `read_context` / `update_context` MCP tools
36
+ - Automatic PLAN mode reset, ACT/EVAL mode append behavior
37
+
38
+ - **Session Document Feature**
39
+ - `create_session` / `get_session` / `get_active_session` / `update_session` MCP tools
40
+ - i18n support for session documents
41
+ - Auto-session creation for PLAN/AUTO modes
42
+
43
+ - **MCP Server Improvements**
44
+ - Auto-detect project root via `roots/list` MCP capability
45
+ - Auto-update `.gitignore` during `codingbuddy init`
46
+ - AUTO mode keyword recognition across all AI tools
47
+ - Improved async utilities and slug generation
48
+
49
+ ### Changed
50
+
51
+ - **Architecture Refactoring**
52
+ - Strategy pattern for agent resolution (ADR-001)
53
+ - Session module decomposition (ADR-002)
54
+ - Context Document System design (ADR-003)
55
+ - Extracted shared test utilities to common files
56
+ - Keyword, session, and pattern strategy module extraction
57
+
58
+ - **Test Coverage Improvements**
59
+ - CLI prompt test coverage: 60% → 90%
60
+ - Comprehensive ContextDocumentService tests
61
+ - Shared test utilities for reusability
62
+
63
+ - **Primary Agent Resolution**
64
+ - Bug fixes for resolution priority
65
+ - Agent language now follows project config
66
+
67
+ ### Fixed
68
+
69
+ - Context loss after conversation compaction (Context Document System)
70
+ - `parse_mode` language configuration not applied
71
+ - AUTO mode keyword recognition bug
72
+ - Primary agent resolution priority bugs
73
+
74
+ ### Breaking Changes
75
+
76
+ - **Context Document System**: Previous session-based context is replaced with fixed-file approach
77
+ - Requires `docs/codingbuddy/context.md` for cross-mode persistence
78
+
79
+ ---
80
+
81
+ ## [2.4.1] - 2026-01-15
82
+
83
+ ### Fixed
84
+
85
+ - Canary deployment timestamp mismatch
86
+
87
+ ---
88
+
89
+ ## [2.4.0] - 2026-01-14
90
+
91
+ ### Added
92
+
93
+ - Integration Specialist Agent pipeline activation
94
+ - Delegation rules for specialist agents
95
+
96
+ ---
97
+
98
+ ## [2.3.0] - 2026-01-12
99
+
100
+ ### Added
101
+
102
+ - File-based state persistence (hybrid approach)
103
+ - Auto-session creation for PLAN/AUTO modes
104
+ - Session caching improvements
105
+
106
+ ---
107
+
108
+ ## [2.2.0] - 2026-01-10
109
+
110
+ ### Added
111
+
112
+ - Session document feature for PLAN → ACT agent recommendation persistence
113
+ - i18n support for session documents
114
+
115
+ ### Fixed
116
+
117
+ - `parse_mode` language configuration issues
118
+
119
+ ---
120
+
121
+ ## [2.1.0] - 2026-01-08
122
+
123
+ ### Added
124
+
125
+ - AUTO mode keyword recognition across all AI tools
126
+ - Agent language follows project config setting
127
+
128
+ ---
129
+
8
130
  ## [2.0.0] - 2026-01-06
9
131
 
10
132
  ### Added