tritonkit-update

Install, update, and verify TritonKit CLI, skills bundle, and app dependencies.

1|Updated May 15, 2026
One-click install
npx skills add https://github.com/NeptuneKit/TritonKit --skill tritonkit-update-neptunekit
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: tritonkit-update
Source: https://github.com/NeptuneKit/TritonKit/tree/main/TritonKit.skills/tritonkit-update
Command: npx skills add https://github.com/NeptuneKit/TritonKit --skill tritonkit-update-neptunekit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Keeping the TritonKit CLI, the bundled TritonKit.skills directory, and app package dependencies aligned to the same release is error-prone, especially when migrating from old top-level skill folders or mixing Homebrew and manual installs. ## Core Features & Use Cases - CLI Update Management: Uses triton update with JSON output or Homebrew (brew upgrade neptunekit/tap/triton) to install or upgrade the macOS CLI to a chosen release tag. - Skills Bundle Replacement: Downloads tritonkit-skills.tar.gz from the matching GitHub Release, removes legacy top-level skill folders, and verifies BUILD_INFO.json and per-skill versions. - App Dependency Alignment: Guides SwiftPM users to pin the release tag and CocoaPods users to run pod repo update and pod install with a Debug-only TritonKit pod. - Use Case: A developer wants to move their project to TritonKit v0.1.24; the skill updates the CLI, replaces the skills bundle, verifies versions, and reports what changed. ## Quick Start Update my TritonKit installation to the latest release, including the CLI, the skills bundle, and my app's package dependencies.

Frequently Asked Questions about tritonkit-update

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I update the TritonKit CLI on macOS?▼

Run `triton update --check --json` then `triton update --yes --json` for the CLI-managed flow, or use `brew update` and `brew upgrade neptunekit/tap/triton` for Homebrew installs. Verify with `triton version --json`.

How do I install or update the TritonKit agent skills bundle?▼

Use `triton update --include-skills --skills-dir "$AGENT_SKILLS_DIR" --yes --json`, which downloads tritonkit-skills.tar.gz from the release and replaces the TritonKit.skills directory. Confirm BUILD_INFO.json matches the intended release version.

Can I pin TritonKit to a specific release version?▼

Yes, pass the tag to the CLI with `triton update --version v0.1.24 --yes --json`. SwiftPM users update the package dependency to the same tag, and CocoaPods users run pod repo update and pod install.

How do I migrate from old top-level TritonKit skill folders?▼

Remove the legacy directories tritonkit-dev-feedback, tritonkit-emulator-cli-takeover, tritonkit-real-project-regression, and tritonkit-update, then install the single TritonKit.skills bundle extracted from tritonkit-skills.tar.gz.

Should I use Homebrew or triton update to upgrade the CLI?▼

Prefer `triton update` first since it emits a machine-readable plan, but for Homebrew-managed installs it must use Homebrew and must not overwrite the Cellar binary directly. A released Homebrew install reports mode=packaged in the web launch plan.