opencode-athena 0.8.1-beta.8 → 0.8.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/commands/athena-review-story.md +24 -9
- package/dist/index.d.ts +4 -4
- package/dist/index.js +995 -109
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +995 -109
- package/dist/plugin/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -91,15 +91,30 @@ Call `athena_party_discussion` to start interactive discussion:
|
|
|
91
91
|
For each agenda item:
|
|
92
92
|
1. Present the finding with agent perspectives
|
|
93
93
|
2. Ask user: [A]ccept / [D]efer / [R]eject / [S]kip
|
|
94
|
-
3.
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
94
|
+
3. If [D]efer, ask for defer target:
|
|
95
|
+
- Exact story ID (e.g., "4.5") - creates/appends to that story
|
|
96
|
+
- "new story" - creates story at end of epic
|
|
97
|
+
- "new story after X" (e.g., "new story after 4.2") - creates 4.2a
|
|
98
|
+
- Existing story ID - appends to that story's Implementation Notes
|
|
99
|
+
4. Call `athena_party_discussion` with action "decide" (include `deferredTo` for defers) or "skip"
|
|
100
|
+
5. Call `athena_party_discussion` with action "continue" to get next item
|
|
101
|
+
|
|
102
|
+
When `hasMoreItems` is false, call `athena_party_discussion` with action "end" to finalize.
|
|
103
|
+
|
|
104
|
+
**The "end" action automatically applies all decisions:**
|
|
105
|
+
- Updates existing stories with accepted findings (adds acceptance criteria)
|
|
106
|
+
- Creates new stories for deferred findings (BMAD-compliant format)
|
|
107
|
+
- Appends to existing stories when deferring to them
|
|
108
|
+
- Updates sprint-status.yaml with new stories in correct order
|
|
109
|
+
- Generates decisions-applied.md summary document
|
|
102
110
|
|
|
103
111
|
## Done
|
|
104
112
|
|
|
105
|
-
|
|
113
|
+
Display the `appliedUpdates` from the "end" action result:
|
|
114
|
+
- Stories updated (count and paths)
|
|
115
|
+
- Stories created (count and paths)
|
|
116
|
+
- Stories appended to (count and paths)
|
|
117
|
+
- Any warnings (e.g., vague defer targets)
|
|
118
|
+
- Path to decisions-applied.md document
|
|
119
|
+
|
|
120
|
+
**Review complete!** All decisions have been applied to story files.
|
package/dist/index.d.ts
CHANGED
|
@@ -707,19 +707,19 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
707
707
|
lspTools: z.ZodBoolean;
|
|
708
708
|
autoGitOperations: z.ZodDefault<z.ZodBoolean>;
|
|
709
709
|
}, "strip", z.ZodTypeAny, {
|
|
710
|
+
notifications: boolean;
|
|
710
711
|
bmadBridge: boolean;
|
|
711
712
|
autoStatus: boolean;
|
|
712
713
|
parallelExecution: boolean;
|
|
713
|
-
notifications: boolean;
|
|
714
714
|
contextMonitor: boolean;
|
|
715
715
|
commentChecker: boolean;
|
|
716
716
|
lspTools: boolean;
|
|
717
717
|
autoGitOperations: boolean;
|
|
718
718
|
}, {
|
|
719
|
+
notifications: boolean;
|
|
719
720
|
bmadBridge: boolean;
|
|
720
721
|
autoStatus: boolean;
|
|
721
722
|
parallelExecution: boolean;
|
|
722
|
-
notifications: boolean;
|
|
723
723
|
contextMonitor: boolean;
|
|
724
724
|
commentChecker: boolean;
|
|
725
725
|
lspTools: boolean;
|
|
@@ -819,10 +819,10 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
819
819
|
} | undefined;
|
|
820
820
|
};
|
|
821
821
|
features: {
|
|
822
|
+
notifications: boolean;
|
|
822
823
|
bmadBridge: boolean;
|
|
823
824
|
autoStatus: boolean;
|
|
824
825
|
parallelExecution: boolean;
|
|
825
|
-
notifications: boolean;
|
|
826
826
|
contextMonitor: boolean;
|
|
827
827
|
commentChecker: boolean;
|
|
828
828
|
lspTools: boolean;
|
|
@@ -916,10 +916,10 @@ declare const AthenaConfigSchema: z.ZodObject<{
|
|
|
916
916
|
} | undefined;
|
|
917
917
|
};
|
|
918
918
|
features: {
|
|
919
|
+
notifications: boolean;
|
|
919
920
|
bmadBridge: boolean;
|
|
920
921
|
autoStatus: boolean;
|
|
921
922
|
parallelExecution: boolean;
|
|
922
|
-
notifications: boolean;
|
|
923
923
|
contextMonitor: boolean;
|
|
924
924
|
commentChecker: boolean;
|
|
925
925
|
lspTools: boolean;
|