{"id":50390944,"url":"https://github.com/mathieubuisson/agents-harness","last_synced_at":"2026-05-30T18:01:29.137Z","repository":{"id":353855630,"uuid":"1219056266","full_name":"MathieuBuisson/agents-harness","owner":"MathieuBuisson","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-09T21:48:05.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-09T23:39:03.433Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/MathieuBuisson.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":null,"dco":null,"cla":null}},"created_at":"2026-04-23T13:38:48.000Z","updated_at":"2026-05-09T21:48:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/MathieuBuisson/agents-harness","commit_stats":null,"previous_names":["mathieubuisson/agents-harness"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MathieuBuisson/agents-harness","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathieuBuisson%2Fagents-harness","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathieuBuisson%2Fagents-harness/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathieuBuisson%2Fagents-harness/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathieuBuisson%2Fagents-harness/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MathieuBuisson","download_url":"https://codeload.github.com/MathieuBuisson/agents-harness/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MathieuBuisson%2Fagents-harness/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33703065,"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-05-30T02:00:06.278Z","response_time":92,"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-30T18:01:28.046Z","updated_at":"2026-05-30T18:01:29.121Z","avatar_url":"https://github.com/MathieuBuisson.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# agents-harness\n\nPersonal configuration, skills, and workflows for AI agents (OpenCode, Antigravity).\n\n## Agents Supported\n\n- **OpenCode** — Config in `dot-config/opencode/`\n- **Antigravity** — Config in `dot-gemini/`\n\n## Directory Structure\n\n```\nagents-harness/\n├── dot-agents/skills/                    # OpenCode skills\n│   ├── code-reviewer/\n│   ├── get-changes-since-last-commit/\n│   ├── load-project-context/\n│   ├── obsidian-markdown/\n│   ├── define-project/                  # Brainstorm and plan new coding projects; produces a Specifications Document\n│   └── update-docs/\n├── dot-config/opencode/\n│   ├── AGENTS.md                          # OpenCode persona\n│   ├── opencode.json                      # Model config\n│   └── tools/\n│       ├── bicep.ts                      # Enables OpenCode to run bicep commands (format, lint, build, generate-params)\n│       └── mypy.ts                       # Run mypy to perform static type checking on Python files or directories\n├── dot-gemini/\n│   ├── GEMINI.md                          # Antigravity persona\n│   └── antigravity/\n│       ├── global_skills/                 # Antigravity skills (same format as OpenCode)\n│       │   ├── code-reviewer/\n│       │   ├── obsidian-markdown/\n│       │   └── define-project/            # Brainstorm and plan new coding projects; produces a Specifications Document\n│       ├── global_workflows/              # Antigravity workflows\n│       ├── mcp_config.json\n│       └── skills.txt                     # Path to global_skills\n└── README.md\n```\n\n## Core Concepts\n\n| Concept | OpenCode | Antigravity |\n|---|---|---|\n| Persona | `AGENTS.md` | `GEMINI.md` |\n| Reusable instructions | `skills/` (folder + `SKILL.md`) | `global_skills/` (folder + `SKILL.md`) and `global_workflows/` (`.md` file) |\n| Config | `opencode.json` | `mcp_config.json`, `skills.txt` |\n\n### Skill Format\n\n```\n\u003cskill-name\u003e/\n└── SKILL.md\n```\n\nFrontmatter:\n```yaml\n---\nname: \u003cname\u003e\ndescription: \u003cdescription\u003e\n---\n```\n\n### Workflow Format (Antigravity)\n\n```\nglobal_workflows/\u003cname\u003e.md\n```\n\nFrontmatter:\n```yaml\n---\ndescription: \u003cdescription\u003e\n---\n```\n\n## Skill ↔ Workflow Sync\n\nThree items exist as both OpenCode skills and Antigravity workflows:\n\n- `get-changes-since-last-commit`\n- `load-project-context`\n- `update-docs`\n\nWhen updating one, replicate to the other with appropriate format changes:\n\n- Skill → Workflow: Move `SKILL.md` content to `.md` file, rename `name:` field in frontmatter to `description:`, remove `name:` line\n- Workflow → Skill: Move `.md` content to `SKILL.md`, add `name:` to frontmatter matching the filename\n\n## Usage\n\nCopy the relevant directories and files to the target repository.\n\nFor OpenCode:\n- `dot-config/opencode/` → `~/.config/opencode/`\n- `dot-agents/skills/` → `~/.agents/skills/`\n\nFor Antigravity:\n- `dot-gemini/` → `~/.gemini/`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieubuisson%2Fagents-harness","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathieubuisson%2Fagents-harness","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathieubuisson%2Fagents-harness/lists"}