GitAgent: An Open Standard for Portable AI Agents in Git Repos

What GitAgent Does
GitAgent addresses the problem of AI agent framework lock-in by creating a portable agent definition that works across multiple platforms. Instead of rewriting agents when switching frameworks, developers can define agents as files in a git repository that export to Claude Code, OpenAI Agents SDK, CrewAI, Google ADK, LangChain, and others.
Core Specification
The standard uses three required files:
agent.yaml- Configuration fileSOUL.md- Personality and instructionsSKILL.md- Capabilities definition
Git-Native Benefits
By being git-native, GitAgent provides several built-in advantages:
- Version control for agent behavior - roll back bad prompts like reverting commits
- Branching for environment promotion (dev → staging → main)
- Human-in-the-loop via PRs - agents can open branches for human review
- Audit trail via git blame and git diff
- Agent forking and remixing - fork public agents, customize, and PR improvements back
- CI/CD integration with GitAgent validate in GitHub Actions
CLI Usage
The command-line interface allows direct execution of agent repositories:
npx @open-gitagent/gitagent run -r https://github.com/user/agent -a claudeOptional Compliance Features
For organizations needing compliance controls, GitAgent offers:
- Risk tier management
- Regulatory mappings (FINRA, SEC, SR 11-7)
- Audit reports via
GitAgent audit
Availability
The specification is available at https://gitagent.sh with code on GitHub. The developers are seeking feedback on schema design and adapter priorities for future development.
📖 Read the full source: HN AI Agents
👀 See Also

Claude Code hooks prevent Chrome tab interference between multiple sessions
A developer created three hooks (session-start, capture-tab-id, enforce-tab-id) that pin each Claude Code session to its own Chrome tab, preventing sessions from accidentally accessing other sessions' tabs during test runs and form fills.

Claude Skills to Emulate a Design Studio Environment
A designer shares two Claude skills: one simulates a studio with teammates and design methods, the other adds 'rigorous play' for creativity.

MiniMax Music 2.5 AI Music Generator Released with Studio-Grade Audio Control
MiniMax Music 2.5 is an AI music generation model that creates studio-quality songs with 44.1kHz Hi-Fi output, 100+ instruments, and paragraph-level precision control using 14+ structural tags for directing song structure.

Multi-provider LLM fallback chain with Ollama support in production AI IDE
Resonant Genesis AI IDE integrates local LLM support as a first-class provider alongside Groq, OpenAI, Anthropic, and Gemini across 30+ microservices using a shared UnifiedLLMClient library with automatic fallback chain.