Thanks for your interest in contributing! This repo ships the client SDKs for Agent Command Center — the Python and TypeScript libraries plus the LangChain, LlamaIndex, React, and Vercel AI SDK integrations.
We welcome contributions of all kinds: bug fixes, new framework integrations, examples, docs improvements, type-tightening, performance work, and issue triage.
- 🐛 Report a bug
- ✨ Request a feature
- 🔖 Good first issues
- 💬 Join Discord
- 📖 Shared vocabulary & style guide
- 📖 Full docs
This project follows the Contributor Covenant Code of Conduct. By participating, you agree to uphold it. Report unacceptable behavior to conduct@futureagi.com.
Before we can merge your first pull request, you'll need to sign our Contributor License Agreement. This is a one-click process that runs automatically on your first PR — you'll see a link to sign, we merge after.
The CLA grants Future AGI, Inc. the rights to use your contribution (including an Apache-style patent grant), while letting you retain copyright.
agent-command-center/
├── README.md # monorepo landing
├── docs/VOCABULARY.md # shared naming + voice guide
├── sdk/
│ ├── python/ # agentcc (PyPI)
│ └── typescript/ # @agentcc/client (npm)
│ └── packages/
│ ├── agentcc-langchain/ # @agentcc/langchain
│ ├── agentcc-llamaindex/ # @agentcc/llamaindex
│ ├── agentcc-react/ # @agentcc/react
│ └── agentcc-vercel/ # @agentcc/vercel
└── integration_tests/ # end-to-end tests against a real gateway
├── python/ # pytest
└── typescript/ # vitest
gh repo fork future-agi/agent-command-center --clone
cd agent-command-centerWe use venv — macOS blocks raw pip install outside a venv (PEP 668).
cd sdk/python
python3 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
# Run unit tests
pytest
# Type-check + lint
mypy src/agentcc
ruff check src/agentcccd sdk/typescript
npm install
npm run build # builds ESM + CJS
npm test # vitest
npm run typecheck
npm run lintEach sub-package (packages/agentcc-*) has its own build / test / typecheck scripts. From the sub-package dir:
cd packages/agentcc-langchain
npm run build
npm testSee integration_tests/README.md. You'll need an AGENTCC_API_KEY and a reachable gateway. A full non-mutating Python run costs under $0.10 — cheap, but not free.
- Create a branch off
main. Branch name convention:<type>/<short-description>where type isfeat,fix,docs,chore,refactor,test, orperf.git checkout -b fix/langchain-streaming-race
- Make your change. Keep it focused — one PR, one concern.
- Add or update tests. Unit tests for logic; integration tests when you're changing how the SDK talks to the gateway.
- Run the relevant checks locally (build, tests, lint, typecheck).
- Open a PR. Use the PR template. Describe the what and why — the diff shows the how.
We use Conventional Commits:
feat(langchain): add AgentCCCallbackHandler for unified observability
fix(python): retry on 503 responses from gateway
docs: clarify AGENTCC_BASE_URL format
- Match the surrounding code — formatter settings (ruff, eslint) are the source of truth.
- For docs and READMEs: follow
docs/VOCABULARY.md. Don't call this repo "AgentCC the gateway" — it's the SDKs. - Don't add comments that restate the code. Add them when the why isn't obvious.
- Small and focused. Under ~400 changed lines is easy to review.
- Tests. Every bug fix should come with a test that fails before the fix and passes after.
- Docs updated. If a public type, function, or env var changed, update the README and docstrings.
- No scope creep. Refactors, formatting fixes, and unrelated cleanups go in separate PRs.
- No drive-by dependency bumps. Unless that's explicitly the PR's point.
Releases are handled by maintainers. If you want a change shipped, open a PR — we batch releases roughly every two weeks or when a fix is time-sensitive.
- Something's unclear in these docs? Open a PR against this file.
- Stuck on setup? Ask in Discord — someone on the team is usually around.
- Want to propose something big? Open a Discussion first so we can talk design before you spend time on a PR.
Thanks for contributing. 🙏