From macroscope
Main Macroscope entrypoint. First check whether Macroscope correctness review already ran for the current local HEAD. If it did, triage unresolved PR comments. If it did not, run a local Macroscope review, triage streaming findings, fix the valid ones, and report what was addressed.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin prassoai-macroscope-localThis skill uses the workspace's default tool permissions.
Use this as the canonical Macroscope router.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this as the canonical Macroscope router.
In Claude Code, this skill is /macroscope.
In Codex, plugin skills are namespaced, so this skill is /macroscope:macroscope.
This skill chooses between two different workflows:
HEAD. Use the PR-comment path only then. Do not run the Macroscope CLI.HEAD. Use the local CLI path.Start from the current local HEAD:
LOCAL_HEAD="$(git rev-parse HEAD)"
Then ask GitHub for the PR associated with the current branch and its status checks:
gh pr view --json number,title,url,headRefOid,statusCheckRollup 2>/dev/null
Treat Macroscope correctness review as having already run for the current local HEAD only when both of these are true:
gh pr view succeeds and headRefOid exactly matches LOCAL_HEAD.statusCheckRollup contains a successful GitHub check run named Macroscope - Correctness Check.
For compatibility, also accept the legacy name Review for correctness.
The matching check should have status == "COMPLETED", conclusion == "SUCCESS", and a non-null completedAt.If either condition fails, use the CLI path.
If Macroscope correctness review already ran for the current local HEAD:
../triage-pr-comments/SKILL.md.macroscope codereview in parallel or as a supplement.../respond-to-pr-comments/SKILL.md if they want you to act on the comments.If Macroscope correctness review has not run for the current local HEAD:
../local-review/SKILL.md.../respond-to-pr-comments/SKILL.md.../review-pr/SKILL.md.