@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.
- package/CHANGELOG.md +32 -0
- package/assets/agents/builder.md +32 -1
- package/assets/slash-commands/issues.md +46 -0
- package/assets/slash-commands/refactor.md +60 -0
- package/package.json +1 -1
- package/src/config/servers.ts +1 -1
- package/src/core/flow-executor.ts +22 -9
- package/assets/agents/coder.md +0 -128
- package/assets/agents/reviewer.md +0 -123
- package/assets/agents/writer.md +0 -120
- package/assets/rules/code-standards.md +0 -176
- package/assets/rules/core.md +0 -197
- package/assets/skills/abuse-prevention/SKILL.md +0 -33
- package/assets/skills/account-security/SKILL.md +0 -35
- package/assets/skills/admin/SKILL.md +0 -37
- package/assets/skills/appsec/SKILL.md +0 -35
- package/assets/skills/auth/SKILL.md +0 -34
- package/assets/skills/billing/SKILL.md +0 -35
- package/assets/skills/code-quality/SKILL.md +0 -34
- package/assets/skills/competitive-analysis/SKILL.md +0 -29
- package/assets/skills/data-modeling/SKILL.md +0 -34
- package/assets/skills/database/SKILL.md +0 -34
- package/assets/skills/delivery/SKILL.md +0 -36
- package/assets/skills/deployments/SKILL.md +0 -33
- package/assets/skills/growth/SKILL.md +0 -31
- package/assets/skills/i18n/SKILL.md +0 -35
- package/assets/skills/ledger/SKILL.md +0 -32
- package/assets/skills/observability/SKILL.md +0 -32
- package/assets/skills/performance/SKILL.md +0 -33
- package/assets/skills/pricing/SKILL.md +0 -32
- package/assets/skills/privacy/SKILL.md +0 -36
- package/assets/skills/pwa/SKILL.md +0 -36
- package/assets/skills/referral/SKILL.md +0 -30
- package/assets/skills/seo/SKILL.md +0 -40
- package/assets/skills/storage/SKILL.md +0 -33
- package/assets/skills/support/SKILL.md +0 -31
- package/assets/skills/uiux/SKILL.md +0 -40
- package/assets/slash-commands/cleanup.md +0 -59
- package/assets/slash-commands/continue.md +0 -94
- package/assets/slash-commands/continue2.md +0 -61
- package/assets/slash-commands/improve.md +0 -153
- package/assets/slash-commands/init.md +0 -34
- package/assets/slash-commands/polish.md +0 -87
- package/assets/slash-commands/quality.md +0 -181
- package/assets/slash-commands/release.md +0 -103
- 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
|
-
```
|