UNPKG

@nakedved/ano

Version:

Claude Code plugin for collaborative annotation and review

19 lines (18 loc) 690 B
/** * Quick annotation commands * * Shortcuts for common annotations to speed up reviews. * * Usage: * ano lgtm <file> # Approve with "Looks good to me" * ano shipit <file> # Strong approve, ready to ship * ano nit <file>:<line> "msg" # Minor nitpick (won't block) * ano block <file>:<line> "msg" # Blocker (will block execution) * ano question <file>:<line> "msg" # Quick question */ import { Command } from 'commander'; export declare const lgtmCommand: Command; export declare const shipitCommand: Command; export declare const nitCommand: Command; export declare const blockCommand: Command; export declare const questionCommand: Command;