draht-claude 2026.5.12 → 2026.7.7
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.
- package/CHANGELOG.md +17 -0
- package/bin/draht-tools.cjs +3756 -1
- package/commands/discuss-phase.md +6 -5
- package/commands/execute-phase.md +3 -1
- package/commands/fix.md +3 -1
- package/commands/init-project.md +4 -3
- package/commands/map-codebase.md +18 -1
- package/commands/next-milestone.md +8 -7
- package/commands/orchestrate.md +1 -1
- package/commands/plan-phase.md +3 -1
- package/commands/quick.md +2 -2
- package/commands/review.md +3 -1
- package/commands/verify-work.md +4 -1
- package/package.json +7 -2
- package/scripts/gsd-post-phase.cjs +11 -0
- package/skills/atomic-reasoning/SKILL.md +4 -0
- package/skills/brainstorming/SKILL.md +2 -0
- package/skills/ddd-workflow/SKILL.md +4 -1
- package/skills/debugging-workflow/SKILL.md +6 -2
- package/skills/gsd-workflow/SKILL.md +20 -0
- package/skills/tdd-workflow/SKILL.md +2 -0
- package/skills/verification-gate/SKILL.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2026.6.11] - 2026-06-11
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- add Concepts, Knowledge Graph, and Calls views to MAP.html
|
|
8
|
+
- wire knowledge-graph steps into GSD workflow commands and skills
|
|
9
|
+
- add graphify-style knowledge graph engine and query CLI
|
|
10
|
+
- introduce @draht/tools package with map-graph and map-serve commands
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- extend map-codebase prompt with map-graph and map-serve usage
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- deepen flow extraction so entries stop dead-ending
|
|
19
|
+
|
|
3
20
|
## [2026.5.12] - 2026-05-12
|
|
4
21
|
|
|
5
22
|
### Added
|