terminal-jarvis

by BA-CalderonMoralesVerified

In the midst of all the tools out there that you can possibly use to keep track of them. Here's a "shovel" that just works to try them all out.

131
Stars
16
Forks
Rust
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/BA-CalderonMorales/terminal-jarvis

Getting Started

Guides for using skills like terminal-jarvis.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Terminal Jarvis

Command center for orchestrating context switching between coding-agent harnesses

Safe Testing Recommended: Terminal Jarvis is a harness for AI coding tools that can modify files and execute commands. For the safest experience, test in a remote development environment such as GitHub Codespaces, Coder, DevPod, or Google Colab.

NPM Version Crates.io Homebrew License: MIT Mentioned in Awesome Docs Coverage

Terminal Jarvis command center in action

Registries that don't animate GIFs render the static frame docs/demo-tui.png; see docs/demo.md for how both are recorded.

Install

Package mechanics, supported platforms, and update behavior: Installation.

# Cargo
cargo install terminal-jarvis
# Cargo binary name is terminal-jarvis; add an alias if you want a short call:
#   echo 'alias tj=terminal-jarvis' >> ~/.bashrc

# npm
npm install -g terminal-jarvis
# The npm package also installs a tj shim, so you can call either:
#   terminal-jarvis list   # or  tj list

# Homebrew
brew install BA-CalderonMorales/homebrew-terminal-jarvis/terminal-jarvis

Quick Start

Inspect and safely gate catalog descriptors for Claude, Gemini, Qwen, Pi, Droid and a variety of other AI assistants from one terminal interface. The modes, the launch guards, and the full command surface: Usage.

# Open the interactive switcher (bare tj on a terminal does the same)
terminal-jarvis tui

# List every coding agent
terminal-jarvis list

# Inspect a harness
terminal-jarvis show opencode

# Preview a capability command
terminal-jarvis plan codex headless

# Select and verify the active harness
terminal-jarvis use opencode
terminal-jarvis current
terminal-jarvis check

# Optional: block harness commands until Trivy clears this workspace
terminal-jarvis gate enable trivy
terminal-jarvis gate status

Commands

Commands run in one of two ways: headless (terminal-jarvis <command>) or inside the interactive switcher (terminal-jarvis tui), and every command is the same however you reached the tool:

  • Installed globally (npm, Homebrew, or Cargo): terminal-jarvis list / tj list
  • No install -- run on demand from anywhere: npx terminal-jarvis list
  • Built from source (this repository): cargo run -- list

First time here? No install needed -- npx terminal-jarvis tui opens the switcher directly.

Headless (terminal-jarvis <command> / tj <command>) -- one command per invocation, for scripts, CI, and one-shot tasks:

CommandPurpose
listShow all coding agents
checkReport binary + env readiness
show <harness>Inspect a harness's capabilities
install <harness>Install a harness
update [<harness>]Upgrade a harness
plan [harness] <capability>Preview the shell command
use <harness> / currentSelect / show active harness
run [harness] [capability] [args...]Execute a capability
security [status|audit|harness]Security posture
gate [status|list|enable|disable|run]Optional local security gate
version [--verbose] / --version / -v / --infoVersion info
self-update [--dry-run] / --updateUpdate Terminal Jarvis or print the update command
config showActive config state
auth help <harness>Credential setup guidance
[harness] [args...]Pass-through to harness binary

Interactive (terminal-jarvis tui / bare tj on a terminal) -- the chat-style switcher with the numbered picker and readiness dashboard. Every headless command above also works here, plus:

CommandPurpose
tuiOpen the switcher
homeBack to the welcome frame (works as clear too)
exitLeave the switcher

Layout

The repository is a few small planes, and every Rust domain is bucketed the same way -- once you can read one, you can read them all.

src/                            # the std-only Rust CLI
├── main.rs                     # entry point; lib.rs is the crate root
├── contracts/                  # the shared data model (Harness, capabilities)
├── cli/                        # parsing, guards, dispatch, tables, help
├── catalog/                    # loads and validates the data plane
├── context/                    # platform, distribution, active-harness state
├── diagnostics/                # readiness reports, probes, PATH resolution
├── gates/                      # optional local security gate (Trivy)
├── runtime/                    # executes harness capability commands
├── security/                   # credential and effect posture
└── tui/                        # the interactive switcher (chat-style shell)
harnesses/<agent>/              # the data plane: one folder per coding agent
├── index.toml                  # name, display, binary, env requirements
├── download/index.toml         # install without sudo
├── update/index.toml           # upgrade without interactive auth
├── headless/index.toml         # non-interactive command mode
├── version/index.toml          # print installed agent version
├── stats/index.toml            # local agent statistics
├── models/index.toml           # list available models
├── security/index.toml         # sandbox and approval settings
├── ui/index.toml               # interactive terminal UI
└── yolo/index.toml             # bypass safeguards (dangerous)
tests/                          # integration tests, one binary per domain
scripts/bash/                   # automation: catalog, delivery, release, verify
docs/                           # decisions, contracts, usage, demo, legacy
build/                          # the build script only
npm/  homebrew/                 # distribution launchers and formulae

Each Rust domain inside src/ keeps the same shape: index.rs as the public face, logic/ for behavior, structs/ for data, tests/ for proof, and every file stays at 100 lines or fewer.

Docs

Browse the whole folder from the docs index. What this is for, and the catalog truth behind it: What is this?.

DocumentWhat
Maintainer guideThe security model and maintainer notes
InstallationPackage mechanics, supported platforms, update behavior
UsageHeadless vs interactive, launch guards
Capability contractFull breakdown of the 9 capabilities
Security gatesOptional Trivy scan behavior and configuration
TroubleshootingTriage blocked scans, failed installs, and local issues fast
Cataloged agentsAll 25 descriptors and support caveat
Support matrixAll 225 capability truth rows
DevelopmentArchitecture, verification, and release artifacts
DemoThe recording, the agent-handover script, making new demos
Legacy notesAliases, plain output behavior, removed experiments

Frequently Asked Questions

What is terminal-jarvis?

terminal-jarvis is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by BA-CalderonMorales. In the midst of all the tools out there that you can possibly use to keep track of them. Here's a "shovel" that just works to try them all out. It has 131 GitHub stars.

Is terminal-jarvis safe to use?

Yes. terminal-jarvis passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install terminal-jarvis?

Clone the repository with "git clone https://github.com/BA-CalderonMorales/terminal-jarvis" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is terminal-jarvis written in?

terminal-jarvis is primarily written in Rust. It is open-source under BA-CalderonMorales on GitHub, so you can review or fork the full source.

Are there alternatives to terminal-jarvis?

Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh terminal-jarvis against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ui-ux-pro-max-skill

by nextlevelbuilder

12

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.

119,92012,870Python
CLI Toolsai-skillsantigravity
View details

happy

by slopus

Mobile and Web client for Codex and Claude Code, with realtime voice, encryption and fully featured

23,4501,980TypeScript
CLI Tools
View details

claudecodeui

by siteboon

Use Claude Code, OpenCode, Cursor CLI, and Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely.

13,3941,866TypeScript
CLI Tools
View details

CRS-自建Claude Code镜像,一站式开源中转服务,让 Claude、OpenAI、Gemini、Droid 订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

12,5471,869JavaScript
CLI Tools
View details

ccstatusline

by sirmalloc

🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more.

12,508545TypeScript
CLI Tools
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details