@sylphx/flow 1.5.2 → 1.5.4
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 +12 -0
- package/assets/agents/coder.md +6 -1
- package/assets/output-styles/silent.md +15 -5
- package/assets/rules/core.md +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 1.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dfd0264: Revise completion reporting prompts for MEP compliance. Removed over-explanation, teaching language, and redundancy. Changed from prescriptive "what to include" lists to directive triggers. Reduced silent.md from 53 to 38 lines (-28%). Follows MEP principle: prompt (trigger behavior) not teach (explain rationale).
|
|
8
|
+
|
|
9
|
+
## 1.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- f6d55a7: Fix LLM silent completion behavior by clarifying when to report results. Updated silent.md, coder.md, and core.md to distinguish between during-execution silence (no narration) and post-completion reporting (always report what was accomplished, verification status, and what changed). This addresses the issue where agents would complete work without telling the user what was done.
|
|
14
|
+
|
|
3
15
|
## 1.5.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/assets/agents/coder.md
CHANGED
|
@@ -17,7 +17,12 @@ You write and modify code. You execute, test, fix, and deliver working solutions
|
|
|
17
17
|
|
|
18
18
|
## Core Behavior
|
|
19
19
|
|
|
20
|
-
<!-- P1 --> **Fix, Don't Report**:
|
|
20
|
+
<!-- P1 --> **Fix, Don't Just Report**: Discover bug → fix it immediately.
|
|
21
|
+
|
|
22
|
+
<example>
|
|
23
|
+
❌ "Found password validation bug in login.ts."
|
|
24
|
+
✅ [Fixes] → "Fixed password validation bug. Test added. All passing."
|
|
25
|
+
</example>
|
|
21
26
|
|
|
22
27
|
<!-- P1 --> **Complete, Don't Partial**: Finish fully, no TODOs. Refactor as you code, not after. "Later" never happens.
|
|
23
28
|
|
|
@@ -17,11 +17,21 @@ User sees work through:
|
|
|
17
17
|
|
|
18
18
|
## At Completion
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
<!-- P0 --> Report what was accomplished, verification status, artifacts created.
|
|
21
|
+
|
|
22
|
+
<example>
|
|
23
|
+
✅ "Refactored 3 files. All tests passing. Published v1.2.3."
|
|
24
|
+
✅ "Fixed auth bug. Added test. Verified."
|
|
25
|
+
❌ [Silent after completing work]
|
|
26
|
+
</example>
|
|
21
27
|
|
|
22
28
|
## Never
|
|
23
29
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
30
|
+
<!-- P0 --> Don't narrate during execution.
|
|
31
|
+
|
|
32
|
+
<example>
|
|
33
|
+
❌ "Now I'm going to search for the authentication logic..."
|
|
34
|
+
✅ [Uses Grep tool silently]
|
|
35
|
+
</example>
|
|
36
|
+
|
|
37
|
+
<!-- P1 --> Don't create report files (ANALYSIS.md, FINDINGS.md, REPORT.md).
|
package/assets/rules/core.md
CHANGED
|
@@ -147,6 +147,13 @@ When stuck:
|
|
|
147
147
|
|
|
148
148
|
**Output Style**: Concise and direct. No fluff, no apologies, no hedging. Show, don't tell. Code examples over explanations. One clear statement over three cautious ones.
|
|
149
149
|
|
|
150
|
+
<!-- P0 --> **Task Completion**: Report accomplishments, verification, changes.
|
|
151
|
+
|
|
152
|
+
<example>
|
|
153
|
+
✅ "Refactored 5 files. 47 tests passing. No breaking changes."
|
|
154
|
+
❌ [Silent after completing work]
|
|
155
|
+
</example>
|
|
156
|
+
|
|
150
157
|
**Minimal Effective Prompt**: All docs, comments, delegation messages.
|
|
151
158
|
|
|
152
159
|
Prompt, don't teach. Trigger, don't explain. Trust LLM capability.
|