submit-agent-tool
v1.0.0
Published
CLI to submit tools to the Agent Tools Marketplace
Maintainers
Readme
submit-agent-tool
CLI tool for submitting tools to the Agent Tools Marketplace.
Quick Start
npx submit-agent-toolUsage
Interactive Mode
Just run the command and answer the prompts:
npx submit-agent-toolCommand Line Arguments
npx submit-agent-tool \
--name "ClawVault" \
--url "github.com/Versatly/clawvault" \
--type cli \
--description "Memory system for AI agents"Options
| Option | Alias | Description |
|--------|-------|-------------|
| --name | -n | Tool name |
| --url | -u | GitHub URL (various formats accepted) |
| --type | -t | Tool type: cli, mcp, api, library, framework, plugin |
| --description | -d | Tool description |
| --author | -a | Author name (optional) |
| --api | | Custom API endpoint |
| --help | -h | Show help |
| --version | -V | Show version |
URL Formats
All of these work:
https://github.com/owner/repo
github.com/owner/repo
owner/repoExamples
# Full command
npx submit-agent-tool -n "MyTool" -u "owner/repo" -t mcp -d "Does cool stuff"
# With author
npx submit-agent-tool \
--name "SuperAgent" \
--url "github.com/dev/super-agent" \
--type framework \
--description "Agent framework for building AI tools" \
--author "YourName"Tool Types
- cli - Command-line tools
- mcp - Model Context Protocol servers
- api - REST/GraphQL APIs
- library - Code libraries/SDKs
- framework - Development frameworks
- plugin - Extensions/plugins for other tools
Global Install
npm install -g submit-agent-tool
submit-agent-tool --helpLicense
MIT
