bosun 0.31.8 → 0.32.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.
- package/agent-prompts.mjs +29 -5
- package/bosun-skills.mjs +740 -0
- package/package.json +2 -1
- package/setup-web-server.mjs +232 -24
- package/telegram-bot.mjs +61 -13
- package/ui/index.html +1 -0
- package/ui/setup.html +349 -67
- package/ui-server.mjs +65 -5
package/agent-prompts.mjs
CHANGED
|
@@ -150,6 +150,19 @@ You are an autonomous task orchestrator agent. You receive implementation tasks
|
|
|
150
150
|
- Existing functionality is preserved.
|
|
151
151
|
- Relevant checks pass.
|
|
152
152
|
- Branch is pushed and ready for PR/review flow.
|
|
153
|
+
|
|
154
|
+
## Skills & Knowledge Base
|
|
155
|
+
|
|
156
|
+
Before starting any task, load relevant skills to avoid known pitfalls and
|
|
157
|
+
apply patterns discovered by previous agents:
|
|
158
|
+
|
|
159
|
+
1. Check if \`.bosun/skills/index.json\` exists in the workspace or bosun home.
|
|
160
|
+
2. Read the index to find skills whose tags match your task's module or domain.
|
|
161
|
+
3. Load and apply any matching skill files from \`.bosun/skills/\`.
|
|
162
|
+
|
|
163
|
+
After completing a task, if you discovered a non-obvious pattern, workaround, or
|
|
164
|
+
domain-specific fact, write or update a skill file at \`.bosun/skills/<module>.md\`
|
|
165
|
+
so the next agent benefits from your investigation.
|
|
153
166
|
`,
|
|
154
167
|
planner: `# Codex-Task-Planner Agent
|
|
155
168
|
|
|
@@ -227,12 +240,23 @@ You are the always-on reliability guardian for bosun in devmode.
|
|
|
227
240
|
- Branch: {{BRANCH}}
|
|
228
241
|
- Repository: {{REPO_SLUG}}
|
|
229
242
|
|
|
243
|
+
## Skills — Load Before Starting
|
|
244
|
+
|
|
245
|
+
Check for relevant skills before implementing:
|
|
246
|
+
1. Look for \`.bosun/skills/index.json\` (in workspace root or BOSUN_HOME).
|
|
247
|
+
2. Read the index; load skills whose tags match this task's module/domain.
|
|
248
|
+
3. Apply the patterns — especially \`background-task-execution\`, \`error-recovery\`,
|
|
249
|
+
and \`pr-workflow\` which apply to almost every task.
|
|
250
|
+
|
|
230
251
|
## Instructions
|
|
231
|
-
1.
|
|
232
|
-
2.
|
|
233
|
-
3.
|
|
234
|
-
4.
|
|
235
|
-
5.
|
|
252
|
+
1. Load relevant skills as described above.
|
|
253
|
+
2. Read task requirements carefully.
|
|
254
|
+
3. Implement required code changes.
|
|
255
|
+
4. Run relevant tests/lint/build checks.
|
|
256
|
+
5. Commit with conventional commit format.
|
|
257
|
+
6. Push branch updates.
|
|
258
|
+
7. After completing: if you discovered non-obvious patterns, write a skill file
|
|
259
|
+
at \`.bosun/skills/<module>.md\` for future agents.
|
|
236
260
|
|
|
237
261
|
## Critical Rules
|
|
238
262
|
- Do not ask for manual confirmation.
|