npm packages for AI agent developers. This project is part of the Gittensor ecosystem (Bittensor Subnet 74). Quality contributions earn TAO rewards.
git clone https://github.com/GitScout-bot/agent-tools.git
cd agent-tools && npm installEach package lives in packages/<name>/ and is independently publishable.
Bug fixes and improvements to existing packages — these are the highest-value contributions. Make what we have better before building something new.
New packages — check the open issues for packages we want built. Every new package must:
- Solve a problem specific to AI agents (not a general-purpose utility)
- Be independently installable via npm
- Have zero unnecessary dependencies
- Include a README with install + usage examples
- Include tests
- Use TypeScript strict mode
packages/your-package/
├── src/
│ └── index.ts
├── package.json
├── tsconfig.json
└── README.md
Every package.json should scope to @agent-tools/:
{
"name": "@agent-tools/your-package",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts"
}- One package or feature per PR
- Reference the issue you're addressing
- Include tests that pass
- Keep dependencies minimal — prefer Node.js built-ins
- Write clear, copy-pasteable usage examples in the README
- Thin wrappers around existing npm packages
- General-purpose dev utilities (loggers, config loaders, etc.)
- Framework-specific code (no LangChain/AutoGen coupling)
- Packages without a clear agent use case
By contributing, you agree that your contributions will be licensed under the MIT License.