{"id":48552198,"url":"https://github.com/rocm/spur","last_synced_at":"2026-07-05T09:00:30.613Z","repository":{"id":345162819,"uuid":"1184049137","full_name":"ROCm/spur","owner":"ROCm","description":"spur your compute","archived":false,"fork":false,"pushed_at":"2026-06-29T08:31:42.000Z","size":2316,"stargazers_count":53,"open_issues_count":48,"forks_count":17,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-06-29T10:22:00.237Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","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/ROCm.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":".github/CODEOWNERS","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-17T07:45:02.000Z","updated_at":"2026-06-29T09:18:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ROCm/spur","commit_stats":null,"previous_names":["powderluv/spur","rocm/spur"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ROCm/spur","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCm%2Fspur","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCm%2Fspur/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCm%2Fspur/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCm%2Fspur/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ROCm","download_url":"https://codeload.github.com/ROCm/spur/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ROCm%2Fspur/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35148606,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"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-04-08T09:00:41.732Z","updated_at":"2026-07-05T09:00:30.570Z","avatar_url":"https://github.com/ROCm.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spur\n\n[![CI](https://github.com/ROCm/spur/actions/workflows/ci.yml/badge.svg)](https://github.com/ROCm/spur/actions/workflows/ci.yml)\n[![E2E](https://github.com/ROCm/spur/actions/workflows/e2e.yml/badge.svg)](https://github.com/ROCm/spur/actions/workflows/e2e.yml)\n[![Rust](https://img.shields.io/badge/dynamic/toml?url=https://raw.githubusercontent.com/ROCm/spur/main/rust-toolchain.toml\u0026query=toolchain.channel\u0026label=rust\u0026color=orange)](https://www.rust-lang.org)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)\n\nAn AI-native job scheduler written in Rust. Drop-in compatible with Slurm's CLI, REST API, and C FFI while providing WireGuard mesh networking, GPU-first scheduling, and modern state management.\n\n## Highlights\n\n- 🔌 **Slurm compatible** — your existing scripts, tools, and muscle memory work unchanged\n- 🔲 **GPU-first scheduling** — first-class GPU support for job scheduling\n- 💾 **Raft-based state** — all state survives restarts; no external database required\n- ⚙️ **Written in Rust** — single static binary per component, fast builds, safe concurrency\n- 🔒 **WireGuard mesh networking** — tunnelled cluster communication out of the box\n\n## Install\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/ROCm/spur/main/install.sh | bash\nexport PATH=\"$HOME/.local/bin:$PATH\"\n```\n\nTry it locally. Spin up a single-node cluster to see Spur in action:\n\n```bash\nspurctld -D --state-dir /tmp/spur-state          # start controller\nspurd -D --controller http://localhost:6817      # start agent in a new terminal\nspur run -- echo \"hello from $(hostname)\"        # run a command\nspur queue                                       # check the queue\n```\n\nFor production and multi-node deployments, see the [deployment guide](docs/deployment/native-host.rst). Sample config and Kubernetes manifests are in [`examples/`](examples/).\n\n## Documentation\n\nThe [full documentation](docs/index.rst) covers quickstart, deployment, and development. Whether you're evaluating Spur or running it in production, that's the best place to start.\n\n## Getting Help\n\n- 💬 **Questions \u0026 discussions** — head over to [GitHub Discussions](https://github.com/ROCm/spur/discussions). Whether you're stuck, have a suggestion, or just want to chat about how you're using Spur, that's the place.\n- 🐛 **Bug reports** — if you've found a confirmed bug, [open an issue](https://github.com/ROCm/spur/issues) with steps to reproduce.\n\n## Building \u0026 Contributing\n\nSee [developer/building](docs/developer/building.rst) for build instructions and project layout, and [developer/contributing](docs/developer/contributing.rst) for contribution guidelines. PRs are welcome.\n\n## License\n\nLicensed under the Apache License 2.0. See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocm%2Fspur","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frocm%2Fspur","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frocm%2Fspur/lists"}