{"id":49755128,"url":"https://github.com/michaelrocks/your-harness","last_synced_at":"2026-05-10T20:02:27.886Z","repository":{"id":351877619,"uuid":"1196528417","full_name":"MichaelRocks/your-harness","owner":"MichaelRocks","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-16T20:48:54.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-16T22:30:02.025Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MichaelRocks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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-30T19:36:38.000Z","updated_at":"2026-04-16T20:48:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/MichaelRocks/your-harness","commit_stats":null,"previous_names":["michaelrocks/your-harness"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MichaelRocks/your-harness","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelRocks%2Fyour-harness","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelRocks%2Fyour-harness/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelRocks%2Fyour-harness/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelRocks%2Fyour-harness/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MichaelRocks","download_url":"https://codeload.github.com/MichaelRocks/your-harness/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MichaelRocks%2Fyour-harness/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32869721,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-10T20:02:22.789Z","updated_at":"2026-05-10T20:02:27.880Z","avatar_url":"https://github.com/MichaelRocks.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# your-harness\n\n`your-harness` is a local Codex plugin that helps teams standardize a durable\nengineering workflow around saved plans, behavior-first validation, root-cause\nfixes, and long-lived docs.\n\nIt ships five skills:\n\n- `create-harness`: bootstrap the harness into an empty repository from a short\n  product brief\n- `adopt-harness`: add the harness to an existing repository without\n  overwriting existing files\n- `plan-small-change`: clarify, plan, and implement a small approved\n  functionality change; implicit invocation allowed\n- `plan-medium-change`: clarify, save a plan, and implement a medium approved\n  functionality change; implicit invocation allowed\n- `plan-large-change`: clarify, save a phased plan set, and implement a large\n  approved functionality change phase by phase; implicit invocation allowed\n\n## Repo Layout\n\n- `.codex-plugin/plugin.json`: plugin manifest\n- `skills/`: skill instructions and UI metadata\n- `scripts/`: thin CLIs used by the skills\n- `shared/`: shared Python implementation\n- `assets/harness-template/`: canonical scaffold copied into user repositories\n- `references/`: shared input defaults and conflict policy\n\n## Local Use\n\nThis checkout includes repo-local marketplace metadata for `MichaelRocks\nPlugins` at [`./.agents/plugins/marketplace.json`](./.agents/plugins/marketplace.json).\nThat entry points back to the repository root so the plugin can be tested from\nthis checkout.\n\nTo install the plugin into a local Codex home, run:\n\n```bash\nbash scripts/install_plugin.sh\n```\n\nThe script copies the current repository into `~/.codex/plugins/your-harness`\nwithout `.git` and common cache directories, then creates or updates\n`~/.codex/plugins/marketplace.json` by replacing only the `your-harness` entry\nfrom the repo-local marketplace file.\n\nSkill helpers are simple Python CLIs:\n\n```bash\npython3 scripts/create_harness.py \\\n  --target /path/to/empty-repo \\\n  --project-name \"Acme Radar\" \\\n  --product-description \"Track product signals and incident risk.\" \\\n  --primary-stacks backend,frontend \\\n  --platforms web \\\n  --ops-profile moderate \\\n  --testing-posture behavior-first \\\n  --emphasis-areas observability\n```\n\n```bash\npython3 scripts/adopt_harness.py \\\n  --target /path/to/existing-repo\n```\n\nUse `--apply` with `scripts/adopt_harness.py` to copy missing files after\nreviewing the dry-run conflict report.\n\n## Maintenance\n\n- Update `assets/harness-template/` when the shipped scaffold changes.\n- Keep skill instructions, shared references, and Python helpers aligned.\n- Run `python3 -m unittest discover -s tests` after helper changes.\n- Run the skill validator against each skill after editing `SKILL.md` or\n  `agents/openai.yaml`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelrocks%2Fyour-harness","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelrocks%2Fyour-harness","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelrocks%2Fyour-harness/lists"}