Files
claude-engineering-plugin/plugins/compound-engineering/skills/proof-push/SKILL.md
John Lamb 0b26ab8fe6 Merge upstream origin/main with local fork additions preserved
Accept upstream's ce-review pipeline rewrite (6-stage persona-based
architecture with structured JSON, confidence gating, three execution
modes). Retire 4 overlapping review agents (security-sentinel,
performance-oracle, data-migration-expert, data-integrity-guardian)
replaced by upstream equivalents. Add 5 local review agents as
conditional personas in the persona catalog (kieran-python, tiangolo-
fastapi, kieran-typescript, julik-frontend-races, architecture-
strategist).

Accept upstream skill renames (file-todos→todo-create, resolve_todo_
parallel→todo-resolve), port local Assessment and worktree constraint
additions to new files. Merge best-practices-researcher with upstream
platform-agnostic discovery + local FastAPI mappings. Remove Rails/Ruby
skills (dhh-rails-style, andrew-kane-gem-writer, dspy-ruby) per fork's
FastAPI pivot.

Component counts: 36 agents, 48 skills, 7 commands.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 13:28:22 -05:00

1.5 KiB

name, description
name description
proof-push This skill should be used when the user wants to push a markdown document to a running Proof server instance. It accepts a file path as an argument, posts the markdown content to the Proof API, and returns the document slug and URL. Triggers on "push to proof", "proof push", "open in proof", "send to proof", or any request to render markdown in Proof.

Proof Push

Push a local markdown file to a running Proof server and open it in the browser.

Usage

Accept a markdown file path as the argument. If no path is provided, ask for one.

Execution

Run the bundled script to post the document:

bash scripts/proof_push.sh <file-path> [server-url]
  • file-path — absolute or relative path to a .md file (required)
  • server-url — Proof server URL, defaults to http://localhost:4000

The script:

  1. Reads the file content
  2. POSTs to /share/markdown as JSON with {markdown, title}
  3. Returns the slug, base URL, and editor URL with access token

Output

Report the returned slug and URLs to the user. The editor URL (with token) gives full edit access.

Error Handling

If the script fails, check:

  • Is the Proof server running? (curl http://localhost:4000)
  • Does the file exist and contain non-empty markdown?
  • Is jq installed? (required for JSON construction)

Resources

scripts/

  • proof_push.sh — Shell script that posts markdown to Proof's /share/markdown endpoint and returns the document slug and URLs.