Thank you for your interest in contributing to the Agent Knowledge Format project!
- Python 3.9+
- Node.js 18+
- git
git clone https://github.com/HMAKT99/AKF.git
cd AKF
# Python SDK
cd python && pip install -e ".[dev]" && cd ..
# TypeScript SDK
cd typescript && npm install && cd ..
# Website
cd site && npm install && cd ..| Directory | Description |
|---|---|
python/akf/ |
Python SDK |
typescript/src/ |
TypeScript SDK |
site/ |
Website (Vite + React + Tailwind) |
spec/ |
Format specification and JSON schema |
packages/ |
Framework integrations (MCP, LangChain, LlamaIndex, CrewAI) |
extensions/ |
VS Code, GitHub Action, Office, Google Workspace |
skills/ |
Agent skill files |
# Python
cd python && python -m pytest tests/ -v
# TypeScript
cd typescript && npm test
# Website (build check)
cd site && npm run build- Create a feature branch (
git checkout -b feature/my-feature) - Make your changes
- Run all relevant tests (see above)
- Add tests for new functionality
- Open a PR against
main
Open a GitHub issue with:
- AKF version (
akf --version) - Python/Node.js version
- Minimal reproduction case
- Expected vs actual behavior
Open a GitHub issue with the "feature request" label. Include:
- Use case description
- Proposed API surface
- Example code showing how you'd use it
- Follow existing patterns in the codebase. No unnecessary abstractions.
- Python: Use type hints. Run
pytestbefore submitting. - TypeScript: Use strict TypeScript. Run
npm testbefore submitting. - Spec changes: Must maintain backward compatibility with existing
.akffiles.
- Framework integrations (LangChain, LlamaIndex, CrewAI, etc.)
- New file format handlers in
universal.py(video, audio, and beyond) - Additional compliance regulation checks
- Documentation and examples
- IDE extensions
- Multi-agent features: delegation policies, team streaming, A2A protocol bridge
- Agent identity: AgentCard registry, cross-platform discovery
By contributing, you agree that your contributions will be licensed under the project's MIT License.