@aidemd-mcp/server 0.3.1 → 0.3.2

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.
@@ -11,7 +11,7 @@
11
11
 
12
12
  ## Pipeline Agents
13
13
 
14
- AIDE ships eight canonical agents that `aide_init` installs to `.claude/agents/aide/`. Each agent maps to one pipeline role:
14
+ AIDE ships nine canonical agents that `aide_init` installs to `.claude/agents/aide/`. Eight map to pipeline phases; one is a read-only investigator:
15
15
 
16
16
  | Agent | Model | Phase(s) | Brain Access |
17
17
  |---|---|---|---|
@@ -23,8 +23,9 @@ AIDE ships eight canonical agents that `aide_init` installs to `.claude/agents/a
23
23
  | `aide-qa` | sonnet | qa | none |
24
24
  | `aide-aligner` | opus | align | none |
25
25
  | `aide-auditor` | opus | refactor | read (playbook + brain) |
26
+ | `aide-explorer` | sonnet | investigation (read-only) | read |
26
27
 
27
- The orchestrator (`/aide`) delegates to these agents by name. Each agent gets fresh context per phase — handoff is via files (`.aide`, `plan.aide`, `todo.aide`), not conversation.
28
+ The orchestrator (`/aide`) delegates to these agents by name. Each agent gets fresh context per phase — handoff is via files (`.aide`, `plan.aide`, `todo.aide`), not conversation. The explorer is the exception: it is a non-pipeline agent used for bug tracing, codebase questions, and intent-tree navigation — it never writes files.
28
29
 
29
30
  ## Skills
30
31
 
@@ -33,6 +33,7 @@ declare const DOC_PATHS: {
33
33
  readonly "agents/aide/aide-qa": ".claude/agents/aide/aide-qa.md";
34
34
  readonly "agents/aide/aide-auditor": ".claude/agents/aide/aide-auditor.md";
35
35
  readonly "agents/aide/aide-aligner": ".claude/agents/aide/aide-aligner.md";
36
+ readonly "agents/aide/aide-explorer": ".claude/agents/aide/aide-explorer.md";
36
37
  readonly "commands/aide/align": ".claude/commands/aide/align.md";
37
38
  readonly "cascading-alignment": ".aide/docs/cascading-alignment.md";
38
39
  readonly "skills/study-playbook": ".claude/skills/study-playbook/SKILL.md";
@@ -57,6 +57,7 @@ const DOC_PATHS = {
57
57
  "agents/aide/aide-qa": ".claude/agents/aide/aide-qa.md",
58
58
  "agents/aide/aide-auditor": ".claude/agents/aide/aide-auditor.md",
59
59
  "agents/aide/aide-aligner": ".claude/agents/aide/aide-aligner.md",
60
+ "agents/aide/aide-explorer": ".claude/agents/aide/aide-explorer.md",
60
61
  "commands/aide/align": ".claude/commands/aide/align.md",
61
62
  "cascading-alignment": ".aide/docs/cascading-alignment.md",
62
63
  "skills/study-playbook": ".claude/skills/study-playbook/SKILL.md",
@@ -96,6 +97,7 @@ const AGENT_DOCS = [
96
97
  { canonical: "agents/aide/aide-qa", hostFilename: "aide/aide-qa.md" },
97
98
  { canonical: "agents/aide/aide-auditor", hostFilename: "aide/aide-auditor.md" },
98
99
  { canonical: "agents/aide/aide-aligner", hostFilename: "aide/aide-aligner.md" },
100
+ { canonical: "agents/aide/aide-explorer", hostFilename: "aide/aide-explorer.md" },
99
101
  ];
100
102
  /**
101
103
  * The canonical list of skill templates that ship into the host's skill
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aidemd-mcp/server",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "MCP server that teaches any agent the AIDE methodology through tool descriptions and progressive disclosure tooling",
5
5
  "type": "module",
6
6
  "bin": {