{"id":29548028,"url":"https://github.com/minuetai/agent-profile-schema","last_synced_at":"2025-07-17T21:02:00.577Z","repository":{"id":303236257,"uuid":"1014779989","full_name":"minuetai/agent-profile-schema","owner":"minuetai","description":"Open JSON schema for autonomous AI agent profiles—identity, skills, evals.","archived":false,"fork":false,"pushed_at":"2025-07-15T18:45:11.000Z","size":69,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-16T16:19:35.765Z","etag":null,"topics":["ai","autonomous-agents","json-schema","large-language-models"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/minuetai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":"GOVERNANCE.md","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-06T12:01:06.000Z","updated_at":"2025-07-15T18:45:15.000Z","dependencies_parsed_at":"2025-07-16T22:19:20.685Z","dependency_job_id":null,"html_url":"https://github.com/minuetai/agent-profile-schema","commit_stats":null,"previous_names":["phelanev/agent-profile-schema","minuetai/agent-profile-schema"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/minuetai/agent-profile-schema","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minuetai%2Fagent-profile-schema","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minuetai%2Fagent-profile-schema/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minuetai%2Fagent-profile-schema/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minuetai%2Fagent-profile-schema/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minuetai","download_url":"https://codeload.github.com/minuetai/agent-profile-schema/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minuetai%2Fagent-profile-schema/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265662803,"owners_count":23807454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ai","autonomous-agents","json-schema","large-language-models"],"created_at":"2025-07-17T21:00:59.442Z","updated_at":"2025-07-17T21:02:00.564Z","avatar_url":"https://github.com/minuetai.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Autonomous Agent Profile Schema (v0.1) 📄\n\n**Purpose —** a vendor-neutral JSON Schema that lets *autonomous AI agents* publish a machine-verifiable résumé:\n\n* identity \u0026 model lineage  \n* skills and benchmark scores  \n* cost, latency, and safety grade  \n* optional publisher + compliance attestations  \n\nThe goal is to standardise how agents represent themselves so marketplaces, SaaS platforms, and even other agents can reason about trust and capability without bespoke adapters.\n\n---\n\n## Files in this repo\n\n| Path | Contents |\n|------|----------|\n| `agent_profile_v0.1.json` | **Draft-07** schema definition (comment-free, validator-ready) |\n| `examples/example_individual_profile.json` | Minimal profile for a solo builder (`individual`) |\n| `examples/example_corporate_profile.json`  | Profile showing optional `publisher` \u0026 `attestations` blocks |\n| `LICENSE` | MIT — applies to this repository’s code \u0026 docs |\n| `CONTRIBUTING.md` | How to propose changes \u0026 run validation locally |\n\n---\n\n## Quick start\n```shell\n    # clone\n    git clone https://github.com/\u003cyour-handle\u003e/agent-profile-schema.git\n    cd agent-profile-schema\n\n    # install validator (Node.js)\n    npm install -g ajv-cli ajv-formats\n\n    # validate the schema itself\n    ajv validate \\\n      -s http://json-schema.org/draft-07/schema# \\\n      -d agent_profile_v0.1.json\n\n    # validate the individual example\n    ajv validate -c ajv-formats \\\n      -s agent_profile_v0.1.json \\\n      -d examples/example_individual_profile.json\n```\n\n\n*No CLI?* Paste both schema and profile into **\u003chttps://jsonschemavalidator.io/\u003e** and click **Validate Schema \u0026 Data**.\n\n▶ Browse the public registry: \u003chttps://minuetai.github.io/agent-profile-schema/\u003e.\n\n---\n\n## 🌍 Publish your agent (24 h discovery)\n\n[![Add your agent — 1 JSON file](https://img.shields.io/badge/Add%20your%20agent-1%20JSON%20file-brightgreen)](#publish-your-agent-24-h-discovery)\n\n**✅ No setup required — just publish in your own repository!**\n\n1. **Create** a file named **`agent_profile_v0.1.json`** in *your own* repository.  \n2. **Fill it in** – start from [`examples/example_individual_profile.json`](examples/example_individual_profile.json).  \n3. **Add topics** – Tag your repo with `agent-profile`, `ai-agent`, `autonomous-agent`, or `llm-agent`\n4. **Validate locally** (optional but recommended)\n\n    ~~~bash\n    # one-time install\n    npm install -g ajv-cli ajv-formats\n\n    # validate schema + data\n    ajv validate -c ajv-formats \\\n                 -s agent_profile_v0.1.json \\\n                 -d agent_profile_v0.1.json\n    ~~~\n\n5. **Commit \u0026 push** – that's it. Our nightly crawler scans GitHub for the filename, validates your profile, and adds it to the public registry.  \n6. **Check back tomorrow** – your agent should appear here → \u003chttps://minuetai.github.io/agent-profile-schema/\u003e\n\n\u003e ℹ️ **Don't fork this repo** unless you're contributing to the schema itself. The whole point is automatic discovery from your own repository!\n\n\u003e ℹ️ If validation fails, the profile won't be indexed. Run the `ajv` command above to see and fix errors before pushing.\n\n---\n\n## Field highlights\n\n| Field | Notes |\n|-------|-------|\n| `model_lineage.base_model` | Any string, e.g. `\"mistral/Mixtral-8x7B-Instruct\"` |\n| `skills[]` | Free-form tags such as `[\"sql-agent\",\"xss-scanner\"]` |\n| `evals[]` | Benchmark objects; include `name`, numeric `score`, `date` |\n| `publisher.entity_type` | `individual`, `corporation`, `nonprofit`, `public-sector` |\n| `attestations[].type` | Typical: `soc2`, `iso27001`, `pci-dss`, `insurance` |\n\nSee full field docs inside the schema file.\n\n---\n\n## Versioning policy\n\n* **v0.1** — initial public draft (stable).  \n* Future drafts (`v0.2`, `v1.0`, …) will live in `versions/` or as new files `agent_profile_v0.X.json`.  \n* Each version is **immutable** once tagged; pin the exact file path for CI pipelines.\n\n---\n\n## Contributing\n\n1. Fork → create a feature branch → open a PR.  \n2. Run `ajv validate` before submitting.  \n3. Add a real-world use-case for any new field you propose.  \n4. We follow [Conventional Commits](https://www.conventionalcommits.org/) for merge messages.\n\nThank you for helping build an open, interoperable future for autonomous agents!\n\n---\n\n*Product names such as “GPT-4o” are trademarks of their respective owners and appear here for illustrative purposes only.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminuetai%2Fagent-profile-schema","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminuetai%2Fagent-profile-schema","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminuetai%2Fagent-profile-schema/lists"}