Skip to main content

Commands Reference

Complete reference for WYN360 CLI commands and slash commands.

Chat Commands

CommandDescription
<message>Chat with the AI assistant
EnterSubmit your message
Shift+EnterAdd a new line (multi-line input)
exit or quitEnd the session

Slash Commands

Session Management

CommandDescriptionExample
/clearClear conversation history and reset token counters/clear
/historyDisplay conversation history in a table/history
/save <file>Save current session to JSON file/save analysis_session.json
/load <file>Load session from JSON file/load analysis_session.json

Model & Configuration

CommandDescriptionExample
/model [name]Show current model info or switch models/model haiku
/tokensShow detailed token usage statistics and costs/tokens
/configShow current configuration/config

Agentic Features (v0.4.0)

CommandDescriptionExample
/memory listList all stored memories/memory list
/memory save <type> <name> | <content>Save a new memory/memory save user my_role | Backend engineer
/memory search <query>Search memories by keyword/memory search python style
/memory delete <file>Delete a memory/memory delete user_my_role.md
/planShow current plan status/plan
/plan approveApprove plan for execution/plan approve
/plan rejectReject and discard current plan/plan reject
/plan skipSkip the current plan step/plan skip
/skillsList available custom skills/skills
/hooksShow registered hooks and stats/hooks
/workersShow sub-agent task status/workers
/budgetShow token budget statistics/budget
/dreamShow dream consolidation status/dream
/compactShow context compaction stats/compact
/vimToggle vim editing mode/vim
/voiceToggle voice input/voice
/buddyToggle virtual companion/buddy
/cronList/manage scheduled jobs`/cron add 5m CI
/pluginsList/manage plugins/plugins create my-tool
/diagnosticsRun linting/type checks/diagnostics src/
/rewindView/restore conversation snapshots/rewind undo

Help & Information

CommandDescriptionExample
/helpDisplay help message with all commands/help

Model Names

Use these names with the /model command:

Anthropic Claude

  • sonnet - Claude Sonnet 4 (most capable)
  • haiku - Claude 3.5 Haiku (fastest, cheapest)
  • opus - Claude Opus 4 (most powerful)

Google Gemini

  • gemini-2.5-flash - Fast and cost-effective
  • gemini-2.5-pro - More powerful

CLI Arguments

When starting WYN360:

wyn360 [OPTIONS]

Options:
--max-token INTEGER Maximum tokens for model output
--max-internet-search-limit INTEGER Maximum internet searches per session
--help Show help message and exit

Examples

Basic Usage

# Start with default settings
wyn360

# Start with custom token limit
wyn360 --max-token 8192

# Start with more search quota
wyn360 --max-internet-search-limit 10

Session Management

You: Write a data analysis script
WYN360: [Creates analysis.py]

You: /save data_analysis_session.json
✓ Session saved to: data_analysis_session.json

You: /tokens
📊 **Token Usage This Session**
Input: 1,500 tokens | Output: 800 tokens
💰 Cost: $0.02 | Model: claude-sonnet-4

You: /clear
✓ Conversation history cleared. Token counters reset.

You: /load data_analysis_session.json
✓ Session loaded from: data_analysis_session.json

Model Switching

You: /model
🤖 **Current Model: claude-sonnet-4-20250514**
💰 Pricing: $3.00/$15.00 per M tokens (input/output)
📊 Context Window: 200K tokens

You: /model haiku
✓ Switched to Claude 3.5 Haiku (claude-3-5-haiku-20241022)
💰 New pricing: $0.25/$1.25 per M tokens

You: /model gemini-2.5-flash
✓ Switched to Google Gemini (gemini-2.5-flash)
💰 New pricing: $0.075/$0.30 per M tokens
📊 Context Window: 2M tokens

For more examples, see Usage Examples.