{"id":50595868,"url":"https://github.com/rogerchappel/runcard","last_synced_at":"2026-06-05T14:01:33.554Z","repository":{"id":361360669,"uuid":"1251814965","full_name":"rogerchappel/runcard","owner":"rogerchappel","description":"Generate deterministic local run cards so developers and agents know how to install, test, build, and smoke a repo.","archived":false,"fork":false,"pushed_at":"2026-05-30T08:41:16.000Z","size":34,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T10:19:56.470Z","etag":null,"topics":["agentic-workflows","cli","developer-tools","local-first","runbook","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rogerchappel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":"ROADMAP.md","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-05-28T00:02:44.000Z","updated_at":"2026-05-30T08:41:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rogerchappel/runcard","commit_stats":null,"previous_names":["rogerchappel/runcard"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rogerchappel/runcard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogerchappel%2Fruncard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogerchappel%2Fruncard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogerchappel%2Fruncard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogerchappel%2Fruncard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rogerchappel","download_url":"https://codeload.github.com/rogerchappel/runcard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogerchappel%2Fruncard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33944671,"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-06-05T02:00:06.157Z","response_time":120,"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":["agentic-workflows","cli","developer-tools","local-first","runbook","typescript"],"created_at":"2026-06-05T14:01:32.751Z","updated_at":"2026-06-05T14:01:33.547Z","avatar_url":"https://github.com/rogerchappel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# runcard\n\nGenerate deterministic local run cards for repositories.\n\n`runcard scan` inspects repository files, normalizes the likely install/check/test/build/smoke/package commands, and writes a compact handoff for humans and coding agents. It does not run project commands during a scan.\n\n## Install\n\n```sh\nnpm install -g runcard\n```\n\nFor local development in this repository:\n\n```sh\nnpm ci\nnpm run build\nnode dist/cli.js scan --fixture node-cli --out .tmp/example --json .tmp/example/run-card.json\n```\n\n## Use\n\nScan the current repository and write `RUN_CARD.md`:\n\n```sh\nruncard scan\n```\n\nWrite both markdown and JSON to a chosen output directory:\n\n```sh\nruncard scan --root /path/to/repo --out /path/to/repo/.runcard --json /path/to/repo/.runcard/run-card.json\n```\n\nSmoke the bundled Node fixture:\n\n```sh\nruncard scan --fixture node-cli --out .tmp/smoke --json .tmp/smoke/run-card.json\n```\n\n## What It Detects\n\n- Node: `package.json`, package manager lockfiles, npm/pnpm/yarn/bun scripts.\n- Python: `pyproject.toml`, `requirements.txt`, `tox.ini`, `pytest.ini`, `noxfile.py`, ruff and pytest hints.\n- Rust: `Cargo.toml`, `Cargo.lock`, `cargo check`, `cargo test`.\n- Go: `go.mod`, `go.sum`, `go test ./...`, `go build ./...`.\n- Make: public Makefile targets.\n- Shell: `.sh` files and scripts under `scripts/`.\n\nCommands are ranked into `install`, `check`, `test`, `build`, `smoke`, `package`, `run`, and `other`. Missing test or smoke paths are flagged with suggestions because those gaps slow down agent handoffs.\n\n## Verify\n\n```sh\nnpm run release:check\n```\n\nThat runs typechecking, fixture-backed tests, the fixture smoke scan, and `npm pack --dry-run`.\n\n## Limitations\n\n- Detection is static and deterministic; runcard does not execute repository commands while scanning.\n- V1 ranking favors conventional file names and script names over deep framework inspection.\n- JSON schema is versioned as `schemaVersion: 1`, but should be treated as early until the first stable release.\n\n## Documentation\n\n- [Product requirements](docs/PRD.md)\n- [Implementation tasks](docs/TASKS.md)\n- [Factory orchestration](docs/ORCHESTRATION.md)\n- [Machine-readable orchestration](docs/orchestration.json)\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for contribution expectations. Changes should be small, reviewable, and verified before review.\n\n## Security\n\nSee [SECURITY.md](SECURITY.md) for vulnerability reporting guidance.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogerchappel%2Fruncard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frogerchappel%2Fruncard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogerchappel%2Fruncard/lists"}