specky-sdd 3.2.0 → 3.2.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.
- package/README.md +42 -54
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/dist/templates/templates/analysis.md +55 -0
- package/dist/templates/templates/api-docs.md +40 -0
- package/dist/templates/templates/bugfix.md +46 -0
- package/dist/templates/templates/checklist.md +29 -0
- package/dist/templates/templates/compliance.md +28 -0
- package/dist/templates/templates/constitution.md +57 -0
- package/dist/templates/templates/cross-analysis.md +46 -0
- package/dist/templates/templates/data-model.md +35 -0
- package/dist/templates/templates/design.md +104 -0
- package/dist/templates/templates/devcontainer.md +36 -0
- package/dist/templates/templates/dockerfile.md +34 -0
- package/dist/templates/templates/journey.md +73 -0
- package/dist/templates/templates/onboarding.md +49 -0
- package/dist/templates/templates/research.md +39 -0
- package/dist/templates/templates/runbook.md +40 -0
- package/dist/templates/templates/specification.md +50 -0
- package/dist/templates/templates/sync-report.md +44 -0
- package/dist/templates/templates/tasks.md +39 -0
- package/dist/templates/templates/terraform.md +38 -0
- package/dist/templates/templates/test-stub.md +34 -0
- package/dist/templates/templates/user-stories.md +39 -0
- package/dist/templates/templates/verification.md +33 -0
- package/dist/templates/templates/work-items.md +27 -0
- package/package.json +1 -1
- package/media/specky-icon-128.png +0 -0
- package/media/specky-icon-256.png +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!-- markdownlint-disable -->
|
|
2
|
+
# Work Items Export: {{title}}
|
|
3
|
+
|
|
4
|
+
**Feature**: {{feature_id}}
|
|
5
|
+
**Platform**: {{platform}}
|
|
6
|
+
**Date**: {{date}}
|
|
7
|
+
**Total Items**: {{total_items}}
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Export Summary
|
|
12
|
+
|
|
13
|
+
| Task ID | Title | Traces To | Effort |
|
|
14
|
+
|---------|-------|-----------|--------|
|
|
15
|
+
{{#each items}}
|
|
16
|
+
| {{task_id}} | {{title}} | {{traces_to}} | {{effort}} |
|
|
17
|
+
{{/each}}
|
|
18
|
+
|
|
19
|
+
## Routing Instructions
|
|
20
|
+
|
|
21
|
+
- **MCP Server**: {{mcp_server}}
|
|
22
|
+
- **Tool**: {{tool_name}}
|
|
23
|
+
- **Note**: {{routing_note}}
|
|
24
|
+
|
|
25
|
+
## Next Steps
|
|
26
|
+
|
|
27
|
+
The AI client should call the {{platform}} MCP server for each work item above.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specky-sdd",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Specky — 57 MCP tools for Spec-Driven Development. 10-phase pipeline, enterprise security (rate limiting, HMAC state integrity, RBAC, hash-chained audit), model routing guidance, context tiering, cognitive debt metrics, EARS notation, 17 diagram types.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
Binary file
|
|
Binary file
|