<< All versions
Skill v1.0.1
currentAutomated scan100/100ba-calderonmorales/terminal-jarvis/tool-config
2 files
──Details
PublishedMay 24, 2026 at 01:18 PM
Content Hashsha256:e0969ac1ebad4058...
Git SHAc4b578d74326
Bump Typepatch
──Files
Files (1 file, 1.7 KB)
SKILL.md1.7 KBactive
SKILL.md · 71 lines · 1.7 KB
version: "1.0.1"
Skill: Tool Configuration
Name: tool-config Description: Adding and configuring AI tools in Terminal Jarvis Trigger: "Add new AI tool", tool configuration, new tool integration
Objective
All AI tools follow consistent modular configuration pattern.
Modular Tool Configuration System
Location: /config/tools/<tool-name>.toml
Configuration Template
toml
[tool]name = "Tool Name"command = "tool-command"description = "Brief description"category = "ai-coding-assistant"[installation]npm = "npm install -g package-name"cargo = "cargo install package-name"other = "curl -fsSL install-script.sh | sh"[authentication]required = truemethod = "api_key"env_var = "TOOL_API_KEY"instructions = "Get your API key from https://provider.com/keys"[features]supports_chat = truesupports_code_generation = truesupports_refactoring = truesupports_testing = false
Adding New Tool Workflow
- Create config file:
/config/tools/newtool.toml - Define tool metadata: name, command, description
- Specify installation: npm, cargo, or custom script
- Document authentication: API keys, env vars, instructions
- List features: capabilities for UI display
- Test detection:
cargo run -- listshould show new tool - Test execution:
cargo run -- run newtoolshould work - Update CHANGELOG: Add under
### Added
Existing Tools
Located in /config/tools/:
claude.toml- Claude Codegemini.toml- Gemini CLIqwen.toml- Qwen Codeopencode.toml- OpenCodecodex.toml- OpenAI Codexaider.toml- Aidergoose.toml- Gooseamp.toml- Ampcrush.toml- Crushllxprt.toml- LLXPRT