Skip to content
Longterm Wiki
Updated 2026-03-27HistoryData
Page StatusDocumentationDashboard
Edited 9 days ago516 words
Content1/12
SummaryScheduleEntityEdit history
Tables4/ ~1Diagrams0Int. links0/ ~5Ext. links0/ ~1Footnotes0References0/ ~1Quotes0Accuracy0

Skills Reference

This page documents all slash commands (skills) available to Claude Code agents working on the longterm-wiki project. Skills are organized into four categories based on their purpose.

Agent Lifecycle

These skills manage the session lifecycle: initialize, work, ship, and reset.

CommandDescriptionWhen to use
/agent-initInitialize agent checklist, register in DB, establish contextFirst thing in every session
/agent-shipVerify checklist, polish PR, create session log, pushEnd of every session
/agent-push-and-verifyRun gate checks, push to GitHub, poll CI until greenCalled by /agent-ship; also usable standalone
/agent-review-prParanoid diff review + execution-based verificationBefore shipping non-trivial PRs; auto-triggered by /agent-ship for large PRs
/agent-next-issuePick highest-priority GitHub issue, signal start, begin workWhen starting a new issue-driven session
/agent-resetClose DB session, reset git to clean main, clean up local filesAfter shipping a PR to prepare for next task

Typical session flow: /agent-init → work → /agent-ship/agent-reset

Maintenance & Health

Periodic tasks that keep the codebase, wiki, and process healthy.

CommandDescriptionCadence
/maintainFull maintenance sweep: review PRs, triage issues, detect cruft, take actionWeekly (or after batch of PRs merge)
/maintain-pr-patrolScan all open PRs for issues (CI failures, conflicts, bot comments) and fix themPeriodically, or via daemon mode
/maintain-auditStrategic codebase health review: complexity trends, dead code, system ROIBiweekly
/maintain-retrospectiveAnalyze recent PR patterns, session logs, process frictionWeekly
/maintain-qa-sweepAdversarial QA: break things, find bugs, audit data integrity, file issuesDaily via /loop 24h /maintain-qa-sweep

Content & Data Review

Deep analysis of specific entities, data quality, and knowledge coverage.

CommandDescriptionInput
/review-entity-deep-diveComprehensive review of one entity: completeness, accuracy, connections, recencyEntity slug (e.g., anthropic)
/review-ontologyAnalyze entity structure: sub-entity candidates, relationship gaps, statement placementEntity slug
/review-knowledge-gapIdentify missing topics, thin coverage areas, relationship gapsOptional focus area
/review-tablebase-enrichEnrich structured data (personnel, funding, benchmarks) via web researchRuns from task queue

Operations

Standalone operational tasks with their own workflows.

CommandDescriptionSchedule
/auto-updateFetch news, route to wiki pages, make targeted editsDaily at 06:00 UTC (GitHub Actions) or via subscription
/maintain (cron)Maintenance sweep via launchdEvery 4 hours (gated on PR count)

Naming Convention

Skills follow a prefix-based naming scheme for discoverability:

  • agent-* — Session lifecycle (init, ship, push, review, reset, next-issue)
  • maintain-* — Periodic health checks and cleanup (audit, retrospective, qa-sweep, pr-patrol)
  • review-* — Deep analysis of specific content/data (entity-deep-dive, ontology, knowledge-gap, tablebase-enrich)
  • auto-update and maintain — Top-level operational commands

Skill Locations

Skills are defined in two places:

  • Commands (.claude/commands/*.md): Simple markdown files, one per command
  • Skills (.claude/skills/*/SKILL.md): Directory-based skills with frontmatter for tool restrictions

Both are loaded automatically by Claude Code.