Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "meridian",
"description": "Research-first workflows, ruthless code review, orchestrator-led reasoning, and opaque subagent isolation for the entire development lifecycle.",
"version": "0.10.5",
"version": "0.10.6",
"author": {
"name": "KodingDev"
},
Expand Down
2 changes: 1 addition & 1 deletion .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "meridian",
"description": "Research-first workflows, ruthless code review, orchestrator-led reasoning, and opaque subagent isolation for the entire development lifecycle.",
"version": "0.10.5",
"version": "0.10.6",
"author": {
"name": "KodingDev"
},
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ Install from the [Cursor plugin marketplace](https://cursor.com/marketplace), or

Hooks are Node scripts (`node ./hooks/*.mjs`) — no Git Bash or shell polyglot required. Session orientation injects via `additional_context` on `sessionStart`. If hooks fail silently, check View → Output → **Hooks** and restart Cursor after updating the plugin.

### GitHub Copilot CLI

Copilot CLI installs the same plugin via its `/plugin` commands and loads the skills and subagents directly. Subagent `tools` are declared as YAML arrays of Claude tool names (`[Read, Grep, Glob, Bash, …]`); Copilot resolves these case-insensitively to its own primitives (`read`, `search`, `execute`, `web`), so the agents get full file/search/shell/web access rather than the bare baseline.

Hook tests: `node --test test/meridian-hooks.test.mjs`

## Credit
Expand Down
2 changes: 1 addition & 1 deletion agents/research.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: research
description: Verify external-API/library/protocol facts against live documentation. Returns facts and source URLs, never reasoning chains or hedging. Used by the research skill to isolate doc-fetching from orchestrator context.
tools: WebFetch, WebSearch, Read, Grep, Glob
tools: [WebFetch, WebSearch, Read, Grep, Glob]
---

# Research Agent
Expand Down
2 changes: 1 addition & 1 deletion agents/reviewer.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: reviewer
description: Code review subagent. Receives a diff plus dimensions and returns classified findings (material-gap | prose-clarity | implementation-detail) with a verdict. Never edits.
tools: Read, Grep, Glob, Bash
tools: [Read, Grep, Glob, Bash]
---

# Reviewer Agent
Expand Down
2 changes: 1 addition & 1 deletion agents/triangulate.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: triangulate
description: Multi-source verification subagent. Reads candidate sources, returns a Ground Truth Audit with confidence label and a concrete falsifier. Used by the triangulate skill to isolate heavy verification reading from orchestrator context.
tools: Read, Grep, Glob, Bash, WebFetch, WebSearch
tools: [Read, Grep, Glob, Bash, WebFetch, WebSearch]
---

# Triangulate Agent
Expand Down
Loading