@sylphx/flow 2.30.0 → 3.0.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/assets/agents/builder.md +32 -1
  3. package/assets/slash-commands/issues.md +46 -0
  4. package/assets/slash-commands/refactor.md +60 -0
  5. package/package.json +1 -1
  6. package/src/config/servers.ts +1 -1
  7. package/src/core/flow-executor.ts +22 -9
  8. package/assets/agents/coder.md +0 -128
  9. package/assets/agents/reviewer.md +0 -123
  10. package/assets/agents/writer.md +0 -120
  11. package/assets/rules/code-standards.md +0 -176
  12. package/assets/rules/core.md +0 -197
  13. package/assets/skills/abuse-prevention/SKILL.md +0 -33
  14. package/assets/skills/account-security/SKILL.md +0 -35
  15. package/assets/skills/admin/SKILL.md +0 -37
  16. package/assets/skills/appsec/SKILL.md +0 -35
  17. package/assets/skills/auth/SKILL.md +0 -34
  18. package/assets/skills/billing/SKILL.md +0 -35
  19. package/assets/skills/code-quality/SKILL.md +0 -34
  20. package/assets/skills/competitive-analysis/SKILL.md +0 -29
  21. package/assets/skills/data-modeling/SKILL.md +0 -34
  22. package/assets/skills/database/SKILL.md +0 -34
  23. package/assets/skills/delivery/SKILL.md +0 -36
  24. package/assets/skills/deployments/SKILL.md +0 -33
  25. package/assets/skills/growth/SKILL.md +0 -31
  26. package/assets/skills/i18n/SKILL.md +0 -35
  27. package/assets/skills/ledger/SKILL.md +0 -32
  28. package/assets/skills/observability/SKILL.md +0 -32
  29. package/assets/skills/performance/SKILL.md +0 -33
  30. package/assets/skills/pricing/SKILL.md +0 -32
  31. package/assets/skills/privacy/SKILL.md +0 -36
  32. package/assets/skills/pwa/SKILL.md +0 -36
  33. package/assets/skills/referral/SKILL.md +0 -30
  34. package/assets/skills/seo/SKILL.md +0 -40
  35. package/assets/skills/storage/SKILL.md +0 -33
  36. package/assets/skills/support/SKILL.md +0 -31
  37. package/assets/skills/uiux/SKILL.md +0 -40
  38. package/assets/slash-commands/cleanup.md +0 -59
  39. package/assets/slash-commands/continue.md +0 -94
  40. package/assets/slash-commands/continue2.md +0 -61
  41. package/assets/slash-commands/improve.md +0 -153
  42. package/assets/slash-commands/init.md +0 -34
  43. package/assets/slash-commands/polish.md +0 -87
  44. package/assets/slash-commands/quality.md +0 -181
  45. package/assets/slash-commands/release.md +0 -103
  46. package/assets/slash-commands/review.md +0 -44
@@ -1,44 +0,0 @@
1
- ---
2
- name: review
3
- description: Review codebase by topic - /review <what to review>
4
- args:
5
- - name: topic
6
- description: What to review (e.g., auth, security, "the login flow", "why it's slow")
7
- required: true
8
- ---
9
-
10
- # Review: $ARGS
11
-
12
- ## Mandate
13
-
14
- - **Think like the failure mode.** Security → attacker. Performance → slow network. Auth → confused user.
15
- - **Delegate workers** for parallel research. You synthesize and verify.
16
- - **Fix, don't report.** Implement solutions directly.
17
-
18
- ## Execution
19
-
20
- 1. **Load skills** — Use the Skill tool to load guidelines for relevant domains. Read the guidelines.
21
-
22
- 2. **Understand** — How is this implemented? Architecture, choices, tradeoffs.
23
-
24
- 3. **Find issues** — What violates the guidelines? What's wrong and why it matters?
25
-
26
- 4. **Fix** — Implement solutions directly.
27
-
28
- ## Output
29
-
30
- ```
31
- ## Review: [topic]
32
-
33
- ### Understanding
34
- [Architecture, choices, tradeoffs]
35
-
36
- ### Issues
37
- [What's wrong and why]
38
-
39
- ### Fixed
40
- [Changes made]
41
-
42
- ### Remains
43
- [Needs human decision]
44
- ```