| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Starter spaces for FAST (Friday Agent Studio & Toolkit) — a configuration-driven agentic orchestration runtime. Each example is a self-contained workspace.yml that defines agents, jobs, and signals — ready to load into the Studio and run.
See STUDIO_QUICKSTART.md for the full walkthrough: Docker Compose setup, loading spaces, publishing skills, triggering jobs, and connecting webhooks.
# 1. Create .env with your API keys
cat > .env <<'EOF'
ANTHROPIC_API_KEY=sk-ant-...
GH_TOKEN=ghp_...
EOF
# 2. Start FAST
docker compose up
# 3. Open the Studio
open http://localhost:5200
# 4. Load a space via the Studio or API
curl -s -X POST http://localhost:8080/api/workspaces/create \
-H 'Content-Type: application/json' \
-d "{\"config\":$(python3 -c "import yaml,json; print(json.dumps(yaml.safe_load(open('pr-review-github/workspace.yml'))))"),\"workspaceName\":\"PR Review (GitHub)\"}"
# 5. Trigger a review
curl -X POST http://localhost:8080/api/workspaces/<workspace-id>/signals/review-pr \
-H 'Content-Type: application/json' \
-d '{"payload":{"pr_url":"https://github.com/owner/repo/pull/123"}}'Each space is a workspace.yml with three building blocks:
Apache 2.0 — see LICENSE for details.
| Back | FazBrowse Home | New Git URL |