Skip to content
Commands

@gittensory command reference

The full PR and issue-comment control surface: Q&A verbs, maintainer digests, and PR action commands. Roles reflect the shipped default policy; maintainers can override per command in .gittensory.yml.

Gate vs auto-review
Commands never flip the gate to advisory and never bypass the one-shot disposition. pause and resume affect only auto-review scheduling — not gate enforcement. See How reviews work for the gate/review split.

Syntax

Post a comment on a pull request (or issue thread) mentioning @gittensory followed by a verb. Trailing free text becomes the command argument where noted (for example @gittensory ask what should I fix first?).

@gittensory <verb> [argument or reason]

Public Q&A commands

SyntaxEffectDefault roles
@gittensory helpShow public-safe @gittensory command help.maintainer, collaborator, confirmed_miner (default policy)
@gittensory askAnswer contribution-quality questions from connected cached sources with citations.maintainer, collaborator, confirmed_miner
@gittensory preflightSummarize public PR hygiene and validation readiness.maintainer, collaborator, confirmed_miner
@gittensory blockersExplain public-safe readiness blockers.maintainer, collaborator, confirmed_miner
@gittensory duplicate-checkSummarize duplicate and in-progress overlap caution.maintainer, collaborator, confirmed_miner
@gittensory miner-contextConfirm public Gittensor miner context when available.maintainer, collaborator, confirmed_miner
@gittensory next-actionSuggest the next public-safe action.maintainer, collaborator, confirmed_miner
@gittensory reviewabilitySummarize maintainer-friendly PR readiness without private review internals.maintainer, collaborator, confirmed_miner
@gittensory repo-fitSummarize public-safe repository fit signals.maintainer, collaborator, confirmed_miner
@gittensory packetPrepare public-safe PR packet guidance.maintainer, collaborator, confirmed_miner

Maintainer queue digests

SyntaxEffectDefault roles
@gittensory queue-summaryPost a maintainer-only queue digest from cached GitHub metadata.maintainer, collaborator
@gittensory confirmed-minersList open PRs whose authors are confirmed in the official-miner cache.maintainer, collaborator
@gittensory review-nowList cached PRs that look ready for maintainer review.maintainer, collaborator
@gittensory needs-authorList cached PRs that need author cleanup before detailed review.maintainer, collaborator
@gittensory duplicate-clustersList duplicate or WIP clusters visible from cached GitHub metadata.maintainer, collaborator
@gittensory burden-forecastProject maintainer review load and queue-growth risk from cached metadata.maintainer, collaborator
@gittensory intake-healthSummarize contributor-intake health from cached queue and config signals.maintainer, collaborator
@gittensory outcome-patternsSummarize what this repo actually merges vs closes from cached PR outcomes.maintainer, collaborator
@gittensory noise-reportHighlight queue noise sources maintainers should triage first.maintainer, collaborator

PR action commands

SyntaxEffectDefault roles
@gittensory gate-overrideRecord a maintainer override for this commit's gate check only (does not persist across new commits).maintainer, collaborator
@gittensory reviewRequest an auto-review run on the current PR head (`@gittensory re-review` is an alias).maintainer, collaborator, confirmed_miner
@gittensory pausePause auto-review for this PR with an optional reason; does not change gate enforcement.maintainer, collaborator
@gittensory resumeResume auto-review for this PR with an optional reason; does not change gate enforcement.maintainer, collaborator
@gittensory resolveMark a review finding as resolved, optionally naming the finding in trailing text.maintainer, collaborator
@gittensory configurationShow the effective resolved review configuration for this repository.maintainer, collaborator
@gittensory explainExplain a specific review finding; supply the finding reference in trailing text.maintainer, collaborator

Per-command authorization overrides

Default allowed roles ship in the worker configuration. A maintainer can tighten or widen a single verb via commandAuthorization in .gittensory.yml (resolved in the same order as other per-repo settings: manifest → database → defaults).

commandAuthorization:
  default: [maintainer, collaborator, confirmed_miner]
  commands:
    review: [maintainer, collaborator, confirmed_miner]
    pause: [maintainer, collaborator]
    gate-override: [maintainer, collaborator]
yaml

Maintainer-only digest verbs ignore a plain pr_author role even when widened — only maintainer, collaborator, and confirmed_miner survive the clamp for those commands.

Related docs