@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 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
@@ -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**: Bug → fix. Debt → clean. Issue → resolve.
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
- Document in commit message or PR description.
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
- - Narrate actions, explain reasoning, report status, provide summaries
25
- - ❌ Create report files to compensate for not speaking (ANALYSIS.md, FINDINGS.md, REPORT.md)
26
- - ❌ Write findings to README or docs unless explicitly part of task
27
- - Just do the work. Commit messages contain context.
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).
@@ -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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "AI-powered development workflow automation with autonomous loop mode and smart configuration",
5
5
  "type": "module",
6
6
  "bin": {