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>
35 lines
1.0 KiB
Bash
Executable File
35 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Push a markdown file to a running Proof server and return the document URL.
|
|
# Usage: proof_push.sh <path-to-markdown> [server-url]
|
|
set -euo pipefail
|
|
|
|
FILE="${1:?Usage: proof_push.sh <markdown-file> [server-url]}"
|
|
SERVER="${2:-http://localhost:4000}"
|
|
UI_URL="${3:-http://localhost:3000}"
|
|
|
|
if [[ ! -f "$FILE" ]]; then
|
|
echo "error: file not found: $FILE" >&2
|
|
exit 1
|
|
fi
|
|
|
|
TITLE=$(basename "$FILE" .md)
|
|
|
|
RESPONSE=$(curl -s -X POST "${SERVER}/share/markdown" \
|
|
-H "Content-Type: application/json" \
|
|
-d "$(jq -n --arg md "$(cat "$FILE")" --arg title "$TITLE" '{markdown: $md, title: $title}')")
|
|
|
|
SLUG=$(echo "$RESPONSE" | jq -r '.slug // empty')
|
|
ERROR=$(echo "$RESPONSE" | jq -r '.error // empty')
|
|
|
|
if [[ -z "$SLUG" ]]; then
|
|
echo "error: failed to create document${ERROR:+: $ERROR}" >&2
|
|
echo "$RESPONSE" >&2
|
|
exit 1
|
|
fi
|
|
|
|
TOKEN_PATH=$(echo "$RESPONSE" | jq -r '.tokenPath // empty')
|
|
|
|
echo "slug: $SLUG"
|
|
echo "url: ${UI_URL}/d/${SLUG}"
|
|
[[ -n "$TOKEN_PATH" ]] && echo "editor-url: ${UI_URL}${TOKEN_PATH}"
|