@tudeorangbiasa/sdd-multiagent-opencode 0.3.0 → 0.3.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.
|
@@ -390,7 +390,7 @@ const COMMANDS = {
|
|
|
390
390
|
"sdd-construct": {
|
|
391
391
|
description: "Initialize SDD workflow for a new or existing project — explore stack, grill vision, scaffold config, create CONTEXT.md and ADRs",
|
|
392
392
|
agent: "sdd-planner",
|
|
393
|
-
|
|
393
|
+
template: `Initialize the "spine" of an SDD-driven project. This is a one-time setup command that creates the foundational artifacts every AI-assisted project needs.
|
|
394
394
|
|
|
395
395
|
## Usage
|
|
396
396
|
|
|
@@ -523,7 +523,7 @@ Next: run /sdd-propose "<your first feature>" to start building.`,
|
|
|
523
523
|
"sdd-explore": {
|
|
524
524
|
description: "Investigate an idea, bug, or code area without changing source code",
|
|
525
525
|
agent: "sdd-explorer",
|
|
526
|
-
|
|
526
|
+
template: `Explore the request safely before committing to a change.
|
|
527
527
|
|
|
528
528
|
## Usage
|
|
529
529
|
|
|
@@ -562,7 +562,7 @@ Return a concise investigation report:
|
|
|
562
562
|
"sdd-propose": {
|
|
563
563
|
description: "Create one focused SDD change with proposal, spec, design, and tasks",
|
|
564
564
|
agent: "sdd-planner",
|
|
565
|
-
|
|
565
|
+
template: `Create a compact, reviewable change plan. Stop before implementation.
|
|
566
566
|
|
|
567
567
|
## Usage
|
|
568
568
|
|
|
@@ -617,7 +617,7 @@ Next: review the artifacts, then run /sdd-apply <change-id>.`,
|
|
|
617
617
|
"sdd-apply": {
|
|
618
618
|
description: "Implement an approved SDD change from tasks.md",
|
|
619
619
|
agent: "sdd-implementer",
|
|
620
|
-
|
|
620
|
+
template: `Implement an existing change from specs/active/<change-id>/.
|
|
621
621
|
|
|
622
622
|
## Usage
|
|
623
623
|
|
|
@@ -674,7 +674,7 @@ Next: run /sdd-ship <change-id> for final review.`,
|
|
|
674
674
|
"sdd-ship": {
|
|
675
675
|
description: "Final verification and readiness review for an SDD change",
|
|
676
676
|
agent: "sdd-reviewer",
|
|
677
|
-
|
|
677
|
+
template: `Verify a completed change before considering it ready.
|
|
678
678
|
|
|
679
679
|
## Usage
|
|
680
680
|
|
|
@@ -723,7 +723,7 @@ Findings first (critical, major, minor), Verification results, Decision (ready:
|
|
|
723
723
|
"sdd-quick": {
|
|
724
724
|
description: "Quick one-shot fix for cosmetic/config changes with CLI wrapper for deterministic checks",
|
|
725
725
|
agent: "sdd-implementer",
|
|
726
|
-
|
|
726
|
+
template: `Execute a small, safe change with minimal overhead. Uses CLI wrapper for classification, pre-flight, verification, and ledger. LLM is only used for the actual edit.
|
|
727
727
|
|
|
728
728
|
## Usage
|
|
729
729
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tudeorangbiasa/sdd-multiagent-opencode",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Spec-Driven Development workflow kit for OpenCode with 5 core commands, multi-agent support, CLI wrappers, and configurable model routing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": ".opencode/plugins/sdd-register.js",
|