@fro.bot/systematic 1.23.2 → 2.0.0

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 (55) hide show
  1. package/README.md +75 -61
  2. package/agents/research/best-practices-researcher.md +2 -3
  3. package/agents/research/issue-intelligence-analyst.md +2 -3
  4. package/package.json +2 -3
  5. package/skills/ce-brainstorm/SKILL.md +10 -11
  6. package/skills/ce-compound/SKILL.md +11 -11
  7. package/skills/ce-compound-refresh/SKILL.md +2 -2
  8. package/skills/ce-ideate/SKILL.md +3 -4
  9. package/skills/ce-plan/SKILL.md +8 -8
  10. package/skills/ce-plan-beta/SKILL.md +9 -10
  11. package/skills/ce-review/SKILL.md +7 -7
  12. package/skills/ce-work/SKILL.md +4 -4
  13. package/skills/ce-work-beta/SKILL.md +556 -0
  14. package/skills/claude-permissions-optimizer/SKILL.md +161 -0
  15. package/skills/claude-permissions-optimizer/scripts/extract-commands.mjs +805 -0
  16. package/skills/deepen-plan/SKILL.md +15 -15
  17. package/skills/deepen-plan-beta/SKILL.md +3 -3
  18. package/skills/deploy-docs/SKILL.md +8 -8
  19. package/skills/file-todos/SKILL.md +2 -1
  20. package/skills/generate_command/SKILL.md +1 -1
  21. package/skills/{report-bug → report-bug-ce}/SKILL.md +38 -33
  22. package/skills/resolve-todo-parallel/SKILL.md +65 -0
  23. package/skills/setup/SKILL.md +3 -3
  24. package/skills/test-browser/SKILL.md +3 -4
  25. package/commands/.gitkeep +0 -0
  26. package/skills/create-agent-skill/SKILL.md +0 -10
  27. package/skills/create-agent-skills/SKILL.md +0 -265
  28. package/skills/create-agent-skills/references/api-security.md +0 -226
  29. package/skills/create-agent-skills/references/be-clear-and-direct.md +0 -531
  30. package/skills/create-agent-skills/references/best-practices.md +0 -404
  31. package/skills/create-agent-skills/references/common-patterns.md +0 -595
  32. package/skills/create-agent-skills/references/core-principles.md +0 -437
  33. package/skills/create-agent-skills/references/executable-code.md +0 -175
  34. package/skills/create-agent-skills/references/iteration-and-testing.md +0 -474
  35. package/skills/create-agent-skills/references/official-spec.md +0 -134
  36. package/skills/create-agent-skills/references/recommended-structure.md +0 -168
  37. package/skills/create-agent-skills/references/skill-structure.md +0 -152
  38. package/skills/create-agent-skills/references/using-scripts.md +0 -113
  39. package/skills/create-agent-skills/references/using-templates.md +0 -112
  40. package/skills/create-agent-skills/references/workflows-and-validation.md +0 -510
  41. package/skills/create-agent-skills/templates/router-skill.md +0 -73
  42. package/skills/create-agent-skills/templates/simple-skill.md +0 -33
  43. package/skills/create-agent-skills/workflows/add-reference.md +0 -96
  44. package/skills/create-agent-skills/workflows/add-script.md +0 -93
  45. package/skills/create-agent-skills/workflows/add-template.md +0 -74
  46. package/skills/create-agent-skills/workflows/add-workflow.md +0 -126
  47. package/skills/create-agent-skills/workflows/audit-skill.md +0 -138
  48. package/skills/create-agent-skills/workflows/create-domain-expertise-skill.md +0 -605
  49. package/skills/create-agent-skills/workflows/create-new-skill.md +0 -197
  50. package/skills/create-agent-skills/workflows/get-guidance.md +0 -121
  51. package/skills/create-agent-skills/workflows/upgrade-to-router.md +0 -161
  52. package/skills/create-agent-skills/workflows/verify-skill.md +0 -204
  53. package/skills/heal-skill/SKILL.md +0 -148
  54. package/skills/resolve_parallel/SKILL.md +0 -36
  55. package/skills/resolve_todo_parallel/SKILL.md +0 -38
@@ -1,148 +0,0 @@
1
- ---
2
- name: heal-skill
3
- description: Fix incorrect SKILL.md files when a skill has wrong instructions or outdated API references
4
- argument-hint: '[optional: specific issue to fix]'
5
- allowed-tools:
6
- - Read
7
- - Edit
8
- - Bash(ls:*)
9
- - Bash(git:*)
10
- disable-model-invocation: true
11
- ---
12
-
13
- <objective>
14
- Update a skill's SKILL.md and related files based on corrections discovered during execution.
15
-
16
- Analyze the conversation to detect which skill is running, reflect on what went wrong, propose specific fixes, get user approval, then apply changes with optional commit.
17
- </objective>
18
-
19
- <context>
20
- Skill detection: !`ls -1 ./skills/*/SKILL.md | head -5`
21
- </context>
22
-
23
- <quick_start>
24
- <workflow>
25
- 1. **Detect skill** from conversation context (invocation messages, recent SKILL.md references)
26
- 2. **Reflect** on what went wrong and how you discovered the fix
27
- 3. **Present** proposed changes with before/after diffs
28
- 4. **Get approval** before making any edits
29
- 5. **Apply** changes and optionally commit
30
- </workflow>
31
- </quick_start>
32
-
33
- <process>
34
- <step_1 name="detect_skill">
35
- Identify the skill from conversation context:
36
-
37
- - Look for skill invocation messages
38
- - Check which SKILL.md was recently referenced
39
- - Examine current task context
40
-
41
- Set: `SKILL_NAME=[skill-name]` and `SKILL_DIR=./skills/$SKILL_NAME`
42
-
43
- If unclear, ask the user.
44
- </step_1>
45
-
46
- <step_2 name="reflection_and_analysis">
47
- Focus on $ARGUMENTS if provided, otherwise analyze broader context.
48
-
49
- Determine:
50
- - **What was wrong**: Quote specific sections from SKILL.md that are incorrect
51
- - **Discovery method**: Context7, error messages, trial and error, documentation lookup
52
- - **Root cause**: Outdated API, incorrect parameters, wrong endpoint, missing context
53
- - **Scope of impact**: Single section or multiple? Related files affected?
54
- - **Proposed fix**: Which files, which sections, before/after for each
55
- </step_2>
56
-
57
- <step_3 name="scan_affected_files">
58
- ```bash
59
- ls -la $SKILL_DIR/
60
- ls -la $SKILL_DIR/references/ 2>/dev/null
61
- ls -la $SKILL_DIR/scripts/ 2>/dev/null
62
- ```
63
- </step_3>
64
-
65
- <step_4 name="present_proposed_changes">
66
- Present changes in this format:
67
-
68
- ```
69
- **Skill being healed:** [skill-name]
70
- **Issue discovered:** [1-2 sentence summary]
71
- **Root cause:** [brief explanation]
72
-
73
- **Files to be modified:**
74
- - [ ] SKILL.md
75
- - [ ] references/[file].md
76
- - [ ] scripts/[file].py
77
-
78
- **Proposed changes:**
79
-
80
- ### Change 1: SKILL.md - [Section name]
81
- **Location:** Line [X] in SKILL.md
82
-
83
- **Current (incorrect):**
84
- ```
85
- [exact text from current file]
86
- ```
87
-
88
- **Corrected:**
89
- ```
90
- [new text]
91
- ```
92
-
93
- **Reason:** [why this fixes the issue]
94
-
95
- [repeat for each change across all files]
96
-
97
- **Impact assessment:**
98
- - Affects: [authentication/API endpoints/parameters/examples/etc.]
99
-
100
- **Verification:**
101
- These changes will prevent: [specific error that prompted this]
102
- ```
103
- </step_4>
104
-
105
- <step_5 name="request_approval">
106
- ```
107
- Should I apply these changes?
108
-
109
- 1. Yes, apply and commit all changes
110
- 2. Apply but don't commit (let me review first)
111
- 3. Revise the changes (I'll provide feedback)
112
- 4. Cancel (don't make changes)
113
-
114
- Choose (1-4):
115
- ```
116
-
117
- **Wait for user response. Do not proceed without approval.**
118
- </step_5>
119
-
120
- <step_6 name="apply_changes">
121
- Only after approval (option 1 or 2):
122
-
123
- 1. Use edit tool for each correction across all files
124
- 2. Read back modified sections to verify
125
- 3. If option 1, commit with structured message showing what was healed
126
- 4. Confirm completion with file list
127
- </step_6>
128
- </process>
129
-
130
- <success_criteria>
131
- - Skill correctly detected from conversation context
132
- - All incorrect sections identified with before/after
133
- - User approved changes before application
134
- - All edits applied across SKILL.md and related files
135
- - Changes verified by reading back
136
- - Commit created if user chose option 1
137
- - Completion confirmed with file list
138
- </success_criteria>
139
-
140
- <verification>
141
- Before completing:
142
-
143
- - Read back each modified section to confirm changes applied
144
- - Ensure cross-file consistency (SKILL.md examples match references/)
145
- - Verify git commit created if option 1 was selected
146
- - Check no unintended files were modified
147
- </verification>
148
-
@@ -1,36 +0,0 @@
1
- ---
2
- name: resolve_parallel
3
- description: Resolve all TODO comments using parallel processing
4
- argument-hint: '[optional: specific TODO pattern or file]'
5
- disable-model-invocation: true
6
- ---
7
-
8
- Resolve all TODO comments using parallel processing.
9
-
10
- ## Workflow
11
-
12
- ### 1. Analyze
13
-
14
- Gather the things todo from above.
15
-
16
- ### 2. Plan
17
-
18
- Create a todowrite list of all unresolved items grouped by type.Make sure to look at dependencies that might occur and prioritize the ones needed by others. For example, if you need to change a name, you must wait to do the others. Output a mermaid flow diagram showing how we can do this. Can we do everything in parallel? Do we need to do one first that leads to others in parallel? I'll put the to-dos in the mermaid diagram flow‑wise so the agent knows how to proceed in order.
19
-
20
- ### 3. Implement (PARALLEL)
21
-
22
- Spawn a pr-comment-resolver agent for each unresolved item in parallel.
23
-
24
- So if there are 3 comments, it will spawn 3 pr-comment-resolver agents in parallel. liek this
25
-
26
- 1. task pr-comment-resolver(comment1)
27
- 2. task pr-comment-resolver(comment2)
28
- 3. task pr-comment-resolver(comment3)
29
-
30
- Always run all in parallel subagents/Tasks for each Todo item.
31
-
32
- ### 4. Commit & Resolve
33
-
34
- - Commit changes
35
- - Push to remote
36
-
@@ -1,38 +0,0 @@
1
- ---
2
- name: resolve_todo_parallel
3
- description: Resolve all pending CLI todos using parallel processing
4
- argument-hint: '[optional: specific todo ID or pattern]'
5
- ---
6
-
7
- Resolve all TODO comments using parallel processing.
8
-
9
- ## Workflow
10
-
11
- ### 1. Analyze
12
-
13
- Get all unresolved TODOs from the /todos/\*.md directory
14
-
15
- If any todo recommends deleting, removing, or gitignoring files in `docs/brainstorms/`, `docs/plans/`, or `docs/solutions/`, skip it and mark it as `wont_fix`. These are compound-engineering pipeline artifacts that are intentional and permanent.
16
-
17
- ### 2. Plan
18
-
19
- Create a todowrite list of all unresolved items grouped by type.Make sure to look at dependencies that might occur and prioritize the ones needed by others. For example, if you need to change a name, you must wait to do the others. Output a mermaid flow diagram showing how we can do this. Can we do everything in parallel? Do we need to do one first that leads to others in parallel? I'll put the to-dos in the mermaid diagram flow‑wise so the agent knows how to proceed in order.
20
-
21
- ### 3. Implement (PARALLEL)
22
-
23
- Spawn a pr-comment-resolver agent for each unresolved item in parallel.
24
-
25
- So if there are 3 comments, it will spawn 3 pr-comment-resolver agents in parallel. liek this
26
-
27
- 1. task pr-comment-resolver(comment1)
28
- 2. task pr-comment-resolver(comment2)
29
- 3. task pr-comment-resolver(comment3)
30
-
31
- Always run all in parallel subagents/Tasks for each Todo item.
32
-
33
- ### 4. Commit & Resolve
34
-
35
- - Commit changes
36
- - Remove the TODO from the file, and mark it as resolved.
37
- - Push to remote
38
-