ワンクリックで
register-agent
Help users register their agent on the gitagent public registry at registry.gitagent.sh
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Help users register their agent on the gitagent public registry at registry.gitagent.sh
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Guide users through agent.yaml configuration, SOUL.md writing, and directory structure
Help users install gitagent and create their first agent from scratch
Help users export agents to other frameworks and import from existing tools
Help users search, install, create, and manage agent skills
Help users run agents with different adapters — Claude, OpenAI, Lyzr, GitHub Models, and more
SOC 職業分類に基づく
| name | register-agent |
| description | Help users register their agent on the gitagent public registry at registry.gitagent.sh |
| license | MIT |
| metadata | {"author":"gitagent","version":"1.0.0","category":"publishing"} |
After a user has created an agent and pushed it to GitHub. Always ask after the GitHub push step: "Would you like to register this agent on the gitagent registry?"
The gitagent registry at registry.gitagent.sh is the public marketplace for gitagent agents. Anyone can browse, search, and run agents listed there. Submitting an agent opens a PR against open-gitagent/registry — CI validates it, a maintainer reviews, and the agent goes live.
Before registering, the user must have:
gh CLI installed and authenticated (gh auth status)gitagent CLI installed (npm install -g gitagent)gitagent registry -r https://github.com/<username>/<agent-name> -c <category> -a <adapters>
| Flag | Description | Default |
|---|---|---|
-r, --repo <url> | Public GitHub repo URL (required) | — |
-d, --dir <dir> | Local agent directory to validate | . |
-c, --category <cat> | Agent category | developer-tools |
-a, --adapters <list> | Comma-separated adapters | claude-code,system-prompt |
developer-tools, data-engineering, devops, compliance, security, documentation, testing, research, productivity, finance, customer-support, creative, education, other
# From inside the agent directory
gitagent registry \
-r https://github.com/shreyas-lyzr/my-agent \
-c developer-tools \
-a claude-code,openai,lyzr,system-prompt
gh apimetadata.json from agent.yaml fieldsopen-gitagent/registryagents/<username>__<agent-name>/ with metadata.json + README.mdnpx @open-gitagent/gitagent run -r <repo-url>After creating an agent, the full flow should be:
gh repo creategitagent registry -r <repo-url>Always present step 4 after a successful GitHub push.