CLI Commands
Complete reference for all Synoppy CLI commands and options.
Core Commands
synoppyStart interactive AI coding sessionsynoppy loginAuthenticate with Synoppy via browsersynoppy logoutSign out and clear credentialssynoppy whoamiShow current logged in usersynoppy statusShow account status, credits, and subscriptionsynoppy helpShow help and available commandsAI Commands
synoppy ask <question>Ask a quick question without entering interactive modesynoppy fix <file>Analyze and fix issues in a filesynoppy explain <file>Explain what a file or code doessynoppy review <file>Perform a code review on a filesynoppy generate <desc>Generate code from a descriptionGit Integration
synoppy commitGenerate AI-powered commit messagessynoppy diffExplain code changes with AICode Quality
synoppy testRun tests with AI-assisted debuggingsynoppy docs <file>Generate documentation for codesynoppy audit <path>Perform a security audit on codesynoppy optimize <file>Suggest performance optimizationssynoppy refactor <file>Suggest code refactoringssynoppy debug <file>Debug a file or analyze an errorTeam & CI/CD
synoppy hooksManage git hooks and CI/CD integrationsynoppy hooks-setupInteractive hooks setup wizardsynoppy team <action>Team management and collaborationExamples
Start a new session
bash
synoppyStart with an initial prompt
bash
synoppy "Add authentication to my Express app"Quick question
bash
synoppy ask "What is the difference between let and const?"Fix issues in a file
bash
synoppy fix src/utils.ts --applyGenerate commit message
bash
synoppy commit --allSecurity audit
bash
synoppy audit ./src --severity high