{"id":49492552,"url":"https://github.com/friday-platform/examples","last_synced_at":"2026-05-01T07:05:52.585Z","repository":{"id":347255533,"uuid":"1192178257","full_name":"friday-platform/examples","owner":"friday-platform","description":"Starter spaces for FAST (Friday Agent Studio \u0026 Toolkit) — ready-to-run agentic workflows","archived":false,"fork":false,"pushed_at":"2026-04-18T03:39:20.000Z","size":896,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-18T05:38:11.200Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://platform.hellofriday.ai","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/friday-platform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-26T00:56:25.000Z","updated_at":"2026-04-18T03:39:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/friday-platform/examples","commit_stats":null,"previous_names":["friday-platform/examples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/friday-platform/examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friday-platform%2Fexamples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friday-platform%2Fexamples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friday-platform%2Fexamples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friday-platform%2Fexamples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/friday-platform","download_url":"https://codeload.github.com/friday-platform/examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/friday-platform%2Fexamples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32487749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-01T07:05:48.081Z","updated_at":"2026-05-01T07:05:52.577Z","avatar_url":"https://github.com/friday-platform.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FAST Examples\n\nStarter spaces for [FAST](https://platform.hellofriday.ai/docs/) (Friday Agent Studio \u0026 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.\n\n## Examples\n\n- **[pr-review-github](pr-review-github/)** — Reviews a GitHub pull request, posts inline comments with findings. (GitHub)\n- **[pr-review-bitbucket](pr-review-bitbucket/)** — Reviews a Bitbucket Cloud pull request, posts inline comments with findings. (Bitbucket)\n- **[jira-bugfix-bitbucket](jira-bugfix-bitbucket/)** — Reads a Jira bug ticket, implements a fix, opens a Bitbucket pull request, and comments on the ticket. (Jira + Bitbucket)\n- **[jira-bugfix-labeled](jira-bugfix-labeled/)** — Searches Jira for `ai-fix` labeled tickets, picks the highest-priority one, fixes it, opens a pull request, and transitions the ticket to Done. (Jira + Bitbucket)\n\n## Quick start\n\nSee [STUDIO_QUICKSTART.md](STUDIO_QUICKSTART.md) for the full walkthrough:\nDocker Compose setup, loading spaces, publishing skills, triggering jobs, and\nconnecting webhooks.\n\n### In short\n\n```bash\n# 1. Create .env with your API keys\ncat \u003e .env \u003c\u003c'EOF'\nANTHROPIC_API_KEY=sk-ant-...\nGH_TOKEN=ghp_...\nEOF\n\n# 2. Start FAST\ndocker compose up\n\n# 3. Open the Studio\nopen http://localhost:5200\n\n# 4. Load a space via the Studio or API\ncurl -s -X POST http://localhost:8080/api/workspaces/create \\\n  -H 'Content-Type: application/json' \\\n  -d \"{\\\"config\\\":$(python3 -c \"import yaml,json; print(json.dumps(yaml.safe_load(open('pr-review-github/workspace.yml'))))\"),\\\"workspaceName\\\":\\\"PR Review (GitHub)\\\"}\"\n\n# 5. Trigger a review\ncurl -X POST http://localhost:8080/api/workspaces/\u003cworkspace-id\u003e/signals/review-pr \\\n  -H 'Content-Type: application/json' \\\n  -d '{\"payload\":{\"pr_url\":\"https://github.com/owner/repo/pull/123\"}}'\n```\n\n## Three building blocks\n\nEach space is a `workspace.yml` with three building blocks:\n\n- **[Signals](https://platform.hellofriday.ai/docs/core-concepts/signals)** — how external events kick off your jobs (webhooks, cron, manual triggers)\n- **[Agents](https://platform.hellofriday.ai/docs/core-concepts/agents)** — built-in or custom agents that execute operations (Claude Code, GitHub, Bitbucket, Jira, and more)\n- **[Jobs](https://platform.hellofriday.ai/docs/core-concepts/jobs)** — workflows composed of agents, tools, skills, and data contracts that run step by step\n\n## Prerequisites\n\n- Docker with Docker Compose v2+\n- [Anthropic API key](https://console.anthropic.com/) for Claude\n- Integration credentials depending on the example (see table above)\n\n## License\n\nApache 2.0 — see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffriday-platform%2Fexamples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffriday-platform%2Fexamples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffriday-platform%2Fexamples/lists"}