@pharaoh-so/mcp 0.3.0 → 0.3.1
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/package.json +1 -1
- package/skills/audit-tests/SKILL.md +1 -0
- package/skills/brainstorm/SKILL.md +1 -0
- package/skills/debt/SKILL.md +1 -0
- package/skills/debug/SKILL.md +1 -0
- package/skills/execute/SKILL.md +1 -0
- package/skills/explore/SKILL.md +1 -0
- package/skills/finish/SKILL.md +1 -0
- package/skills/health/SKILL.md +1 -0
- package/skills/investigate/SKILL.md +1 -0
- package/skills/onboard/SKILL.md +1 -0
- package/skills/orchestrate/SKILL.md +1 -0
- package/skills/parallel/SKILL.md +1 -0
- package/skills/pharaoh/SKILL.md +1 -0
- package/skills/plan/SKILL.md +1 -0
- package/skills/pr/SKILL.md +1 -0
- package/skills/refactor/SKILL.md +1 -0
- package/skills/review/SKILL.md +1 -0
- package/skills/review-codex/SKILL.md +1 -0
- package/skills/review-receive/SKILL.md +1 -0
- package/skills/sessions/SKILL.md +1 -0
- package/skills/tdd/SKILL.md +1 -0
- package/skills/verify/SKILL.md +1 -0
- package/skills/wiring/SKILL.md +1 -0
- package/skills/worktree/SKILL.md +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pharaoh-so/mcp",
|
|
3
3
|
"mcpName": "so.pharaoh/pharaoh",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.1",
|
|
5
5
|
"description": "MCP proxy for Pharaoh — maps codebases into queryable knowledge graphs for AI agents. Enables Claude Code in headless environments (VPS, SSH, CI) via device flow auth.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: audit-tests
|
|
3
|
+
prompt-name: audit-tests
|
|
3
4
|
description: "Classify tests by real value: ceremony versus protection. Mutation score over line coverage — tests that can't detect mutations are theater. Identify tests that prove nothing, tests that duplicate coverage, and gaps where real protection is missing. Produce an actionable audit with keep, rewrite, and delete verdicts."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: brainstorm
|
|
3
|
+
prompt-name: brainstorm
|
|
3
4
|
description: "Explore intent, requirements, and design before implementation. Collaborative dialogue to turn ideas into specs. Ask clarifying questions one at a time, propose 2-3 approaches with trade-offs, get approval before writing any code. Prevents wasted work from unexamined assumptions."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/debt/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: debt
|
|
3
|
+
prompt-name: find-tech-debt
|
|
3
4
|
description: "Categorized technical debt report using Pharaoh knowledge graph. Four-step pro-tier workflow: dead code detection, duplicate logic discovery, undocumented complex functions via spec gaps, and volatile high-complexity module identification. Categorizes findings as DELETE, CONSOLIDATE, DOCUMENT, STABILIZE, or TEST — each with the specific function or file, effort estimate, and risk of ignoring."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/debug/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: debug
|
|
3
|
+
prompt-name: systematic-debugging
|
|
3
4
|
description: "Systematic 4-phase debugging methodology. Root cause investigation before any fixes. Read errors carefully, reproduce consistently, trace data flow, form hypotheses, test minimally. If 3+ fixes fail, question the architecture. No guessing, no quick patches, no symptom fixes."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/execute/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: execute
|
|
3
|
+
prompt-name: execute-plan
|
|
3
4
|
description: "Execute a written implementation plan with review checkpoints. Load plan, review critically, execute tasks sequentially with verification at each step. Stop and ask when blocked — never guess through ambiguity. Finish with branch completion workflow."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/explore/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: explore
|
|
3
|
+
prompt-name: explore-module
|
|
3
4
|
description: "Deep-dive into a single codebase module using Pharaoh knowledge graph. Four-step free-tier workflow: full structure with functions, exports, and complexity scores; blast radius of what depends on it; upstream and downstream dependency mapping; and related function discovery. Produces a module briefing with purpose, key functions, dependencies, risk areas, and external API surface."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/finish/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: finish
|
|
3
|
+
prompt-name: finish-branch
|
|
3
4
|
description: "Complete a development branch after implementation. Verify all tests pass, present structured options (merge locally, create PR, keep branch, or discard), execute the chosen workflow, and clean up worktrees. Never merge broken code or delete work without confirmation."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/health/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: health
|
|
3
|
+
prompt-name: health-check
|
|
3
4
|
description: "Full codebase health sweep using Pharaoh knowledge graph. Six-step pro-tier workflow: module map with metrics, dead code detection, test coverage gaps, duplicate logic, regression risk scoring, and spec drift analysis. Produces an A-F grade, top 5 risks, tech debt hotspots (high-complexity + low-coverage + high-volatility intersections), spec drift summary, and prioritized actions with effort estimates."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: investigate
|
|
3
|
+
prompt-name: investigate-change
|
|
3
4
|
description: "Full architectural context gathering before modifying a function, file, or module using Pharaoh knowledge graph. Four-step free-tier workflow: module structure, blast radius of downstream callers, related function discovery, and dependency mapping. Blocks code suggestions until all context is gathered. Produces an investigation report with structure, blast radius, related functions, dependency context, and risk assessment."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/onboard/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: onboard
|
|
3
|
+
prompt-name: onboard-to-codebase
|
|
3
4
|
description: "Quick codebase orientation using Pharaoh knowledge graph. Five-step workflow using only free-tier tools: full module map, deep-dive into the three largest modules, entry point discovery, critical path blast radius, and core data flow mapping. Produces an onboarding summary with module descriptions, entry points, data flow, and key functions to read first."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orchestrate
|
|
3
|
+
prompt-name: orchestrate-plan
|
|
3
4
|
description: "Execute implementation plans by dispatching one subagent per task with two-stage review (spec compliance then code quality). Sequential task execution with quality gates. Controller stays in session, constructs focused context for each agent, never shares session history. Handles DONE/DONE_WITH_CONCERNS/NEEDS_CONTEXT/BLOCKED status protocol."
|
|
4
5
|
version: 0.2.5
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/parallel/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: parallel
|
|
3
|
+
prompt-name: parallel-agents
|
|
3
4
|
description: "Dispatch 2+ independent subagent tasks that run concurrently. Each agent gets focused scope, clear goal, constraints, and expected output. No shared state between agents. Review and integrate results after all complete."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/pharaoh/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pharaoh
|
|
3
|
+
prompt-name: pharaoh-core
|
|
3
4
|
description: "Codebase knowledge graph — gives AI agents full architectural awareness. Query architecture, dependencies, blast radius, module context, and function search instead of reading files one at a time. Code intelligence via MCP: understand any codebase in seconds."
|
|
4
5
|
version: 0.3.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/plan/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: plan
|
|
3
|
+
prompt-name: plan-with-pharaoh
|
|
3
4
|
description: "Full-cycle architecture-aware planning: Pharaoh reconnaissance, structured plan writing with bite-sized TDD steps and zero placeholders, then deep adversarial review with wiring verification and interactive issue resolution. Replaces both writing-plans and plan-review."
|
|
4
5
|
version: 0.3.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/pr/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: pr
|
|
3
|
+
prompt-name: pre-pr-review
|
|
3
4
|
description: "Pre-pull-request architectural review checklist using Pharaoh codebase knowledge graph. Covers module context, blast radius per touched module, hidden coupling between modules, duplicate logic detection, regression risk scoring, and vision spec alignment. Produces a structured review summary before opening a PR."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/refactor/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: refactor
|
|
3
|
+
prompt-name: safe-refactor
|
|
3
4
|
description: "Safe refactoring workflow using Pharaoh codebase knowledge graph. Six-step process: module context, blast radius of downstream callers, reachability verification, dependency mapping, naming conflict detection, and test coverage assessment. Produces a refactoring plan with every caller listed, test files identified, unreachable code flagged, and high-risk paths warned."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/review/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: review
|
|
3
|
+
prompt-name: review-with-pharaoh
|
|
3
4
|
description: "Architecture-aware pre-PR code review using Pharaoh codebase knowledge graph. Four-phase workflow: context gathering with module structure and blast radius, risk assessment with regression scoring and wiring checks, spec alignment against vision docs, and a final verdict of SHIP / SHIP WITH CHANGES / BLOCK. Auto-block rules for unreachable exports, circular dependencies, high regression risk, and spec violations."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: review-codex
|
|
3
|
+
prompt-name: cross-model-review
|
|
3
4
|
description: "Cross-model security review. Dispatch code to a different AI model or subagent for independent second-opinion review. Evaluator applies AGREE, DISAGREE, or CONTEXT verdicts to each finding. Catches blind spots from single-model reasoning. Use for security-sensitive code, auth flows, data access, and architectural decisions."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: review-receive
|
|
3
|
+
prompt-name: receive-code-review
|
|
3
4
|
description: "Receive code review feedback with technical rigor. No performative agreement — verify suggestions against codebase reality before implementing. Push back with evidence when feedback is wrong. Clarify all unclear items before implementing any. External feedback is suggestions to evaluate, not orders to follow."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/sessions/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sessions
|
|
3
|
+
prompt-name: session-decomposition
|
|
3
4
|
description: "Decompose work into parallel, isolated sessions using git worktrees. Each session gets fresh context, a narrow scope, and produces atomic commits. Prevents context window pollution from large tasks. Coordinate across sessions without shared state."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/tdd/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tdd
|
|
3
|
+
prompt-name: test-driven-development
|
|
3
4
|
description: "Test-driven development discipline. Write the failing test first, watch it fail, write minimal code to pass, refactor. No production code without a failing test. No exceptions without explicit permission. Covers red-green-refactor cycle, common rationalizations, and when to start over."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/verify/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: verify
|
|
3
|
+
prompt-name: verification
|
|
3
4
|
description: "Evidence before assertions. Run verification commands and confirm output before claiming work is complete, fixed, or passing. No 'should work now' — run the command, read the output, then claim the result. Covers tests, builds, linting, agent delegation, and requirement checklists."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/wiring/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiring
|
|
3
|
+
prompt-name: validate-wiring
|
|
3
4
|
description: "Wiring validation for a codebase module using Pharaoh knowledge graph. Four-step pro-tier workflow: entry point reachability, caller verification via blast radius, test coverage per function, and dead code detection. Categorizes functions as CONNECTED, UNREACHABLE, DEAD, or UNTESTED. Produces a PASS or FAIL verdict with specific issues listed. Iron law: zero callers on a non-entry-point export means the code is not wired."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|
package/skills/worktree/SKILL.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: worktree
|
|
3
|
+
prompt-name: git-worktree
|
|
3
4
|
description: "Set up isolated git worktrees for feature work. Smart directory selection with safety verification — checks for existing worktree directories, verifies gitignore, auto-detects project setup, and confirms clean test baseline before starting. Prevents accidentally committing worktree contents."
|
|
4
5
|
version: 0.2.0
|
|
5
6
|
homepage: https://pharaoh.so
|