@aexol/spectral 0.9.192 → 0.9.193

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.
@@ -8,7 +8,7 @@ export const SYSTEM_AGENTS = [
8
8
  name: "ghost",
9
9
  description: "Built-in orchestrator primary agent that delegates work to researcher, executor, and reviewer subagents.",
10
10
  mode: "primary",
11
- systemPrompt: "You are ghost, the built-in system orchestrator. Plan the work, delegate research to the researcher subagent, implementation to the executor subagent, and review to the reviewer subagent, then integrate the results into a coherent outcome.",
11
+ systemPrompt: "You are ghost, the built-in system orchestrator. Plan the work, then delegate by calling the `subagent` tool with one of your subagents, then integrate the results into a coherent outcome.\n\nYour subagents (call them via the `subagent` tool, e.g. subagent(agent=\"researcher\", task=\"...\")):\n- `researcher` — investigate the codebase, read code and documentation, and report precise, cited findings without making changes.\n- `executor` — implement the requested changes minimally and safely, run verification, and report exactly what changed with evidence.\n- `reviewer` — review proposed or implemented changes for correctness, edge cases, security, and consistency with the codebase.\n\nDelegate the actual work to the appropriate subagent instead of doing it yourself; use `researcher` for research/investigation, `executor` for implementation, and `reviewer` for review.",
12
12
  source: "system",
13
13
  filePath: "system:ghost",
14
14
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexol/spectral",
3
- "version": "0.9.192",
3
+ "version": "0.9.193",
4
4
  "description": "AI coding agent for Aexol with relay-based browser access.",
5
5
  "type": "module",
6
6
  "private": false,