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

YantrikClaw Fork Adds Cognitive Memory, Companion Mode, and Tier-Aware Tools to ZeroClaw
YantrikClaw is a fork of ZeroClaw that introduces three major features: Cognitive Memory with YantrikDB for persistent semantic recall, Companion Mode with bond tracking and proactive behavior, and tier-aware tool selection that adapts to model size from Raspberry Pi to large clusters.

AI Agent Embedded in Shell: Terminal Buffer & Overlay Extension
Open-source shell with embedded AI agent that reads terminal output and types commands via a floating overlay. Supports local and cloud models.

OpenClaw Skill for Local Meeting Transcription with Whisper
A new OpenClaw skill called ghostmeet provides local meeting transcription using Whisper. It captures audio from browser tabs via a Chrome Extension and can generate summaries using Claude, with all audio and transcription processed locally on your machine.

ETL-D MCP Server: Deterministic CSV Parsing for Claude to Prevent Financial Hallucinations
A developer built ETL-D, an open-source MCP server for Claude Desktop that processes CSVs in three deterministic layers to prevent decimal point hallucinations in financial data. It uses Python parsers for known formats, achieves ~70ms response times with 0 LLM calls for 200 parallel requests, and only uses LLMs as a fallback for high-entropy text.