Standalone CLIs

Three of the Tekhne skills also ship as standalone Rust binaries. Each installs on macOS or Linux with a single curl | sh command, then registers its bundled companion skill into your agents with an explicit skill installsubcommand. The installer only places the binary on your PATH, so registering the skill is always a deliberate second step.

Installers follow the cargo-dist shell installer shape and are published under thetool/ tag namespace, so every release tag looks liketool/<package>-v<semver> (for exampletool/skill-auditor-v0.1.0). Binaries land in CARGO_HOME. Looking for the validators or the other skills? They ship as plain Markdown skills in theSkills catalog.

🔍

pantheon-skill-auditorv0.1.0

Audit skill quality using the 9-dimension framework.

Deterministic 9-dimension skill quality auditor (a Rust port of the Go skill-auditor). It combines skill-validator structural checks with the custom D1 to D9 scoring and can emit human or JSON reports, persist audits, and gate a batch below a grade threshold.

Commands

  • pantheon-skill-auditor evaluate <skill>Evaluate a single skill.
  • pantheon-skill-auditor batch <skill...>Evaluate multiple skills, with an optional --fail-below grade gate.
  • pantheon-skill-auditor duplication [dir]Detect duplicate skills by line-overlap or --enhanced composite similarity.
  • pantheon-skill-auditor prune-auditsKeep the most recent N audit snapshots per skill under .context/audits.
  • pantheon-skill-auditor plan-aggregation --family <prefix>Draft an aggregation plan for a family of skills sharing a name prefix.
  • pantheon-skill-auditor tessl-check <skill>Check a skill for Tessl registry compliance (agent-agnostic, performance metrics).
  • pantheon-skill-auditor quality-signals [dir]Score per-skill quality signals (structural, content, quality markers).
  • pantheon-skill-auditor semantic-analysis [dir]Report pairwise semantic similarity between skills.
  • pantheon-skill-auditor pattern-analysis [dir]Combined duplication + semantic + quality repository health score.
  • pantheon-skill-auditor skill installRegister the bundled skill into detected agent directories.
  • pantheon-skill-auditor skill bundleList the skill files embedded in the binary (--manifest for JSON).

Install

# 1. Install the binary onto your PATH
$ curl --proto '=https' --tlsv1.2 -LsSf \
https://github.com/pantheon-org/tekhne/releases/download/tool/pantheon-skill-auditor-v0.1.0/pantheon-skill-auditor-installer.sh | sh

# 2. Register its bundled skill into your agents
$ pantheon-skill-auditor skill install
✓ Installed skill-quality-auditor into your agents

Bundled skill:skill-quality-auditor

🧭

pantheon-adrv0.1.0

Create and manage Architecture Decision Records.

Architecture Decision Record (ADR) CLI with a bundled adr-creator skill and installer. It creates, lists, and supersedes ADRs from the house template, writing to docs/adr by default (or the ADR_DIR env var).

Commands

  • pantheon-adr new <title>Create the next-numbered ADR from the house template.
  • pantheon-adr listList existing ADRs by number, status, and title.
  • pantheon-adr supersede <number> <new-title>Supersede an existing ADR with a new one.
  • pantheon-adr skill installRegister the bundled skill into detected agent directories.

Install

# 1. Install the binary onto your PATH
$ curl --proto '=https' --tlsv1.2 -LsSf \
https://github.com/pantheon-org/tekhne/releases/download/tool/pantheon-adr-v0.1.0/pantheon-adr-installer.sh | sh

# 2. Register its bundled skill into your agents
$ pantheon-adr skill install
✓ Installed adr-creator into your agents

Bundled skill:adr-creator

📓

pantheon-journalv0.1.0

Create and validate structured journal entries.

Creates and validates structured journal entries, promoting the journal-entry-creator skill into a self-contained CLI. Entries are timestamped Markdown with YAML frontmatter, triple-synced dates, and template-based sections across five entry types, then checked for compliance.

Commands

  • pantheon-journal new --type <type> --title <title>Create a new entry from one of the five template schemas.
  • pantheon-journal validate <file>Validate an existing entry for compliance.
  • pantheon-journal lintAdvisory tag lint against the taxonomy: alias suggestions and unfaceted tags.
  • pantheon-journal indexGenerate the browse index (NDJSON source of truth + rendered markdown view).
  • pantheon-journal backfillInject missing title/date frontmatter across existing dated entries.
  • pantheon-journal skill installRegister the bundled skill into detected agent directories.

Install

# 1. Install the binary onto your PATH
$ curl --proto '=https' --tlsv1.2 -LsSf \
https://github.com/pantheon-org/tekhne/releases/download/tool/pantheon-journal-v0.1.0/pantheon-journal-installer.sh | sh

# 2. Register its bundled skill into your agents
$ pantheon-journal skill install
✓ Installed journal-entry-creator into your agents

Bundled skill:journal-entry-creator