86 lines
1.6 KiB
Markdown
86 lines
1.6 KiB
Markdown
# Command Ideas for AnchorCli
|
|
|
|
## Basic Commands
|
|
|
|
### `/help`
|
|
Display a list of available commands and their descriptions.
|
|
|
|
### `/clear`
|
|
Clear the terminal screen.
|
|
|
|
### `/history`
|
|
Show the current chat history.
|
|
|
|
### `/reset`
|
|
Clear the conversation history and start fresh.
|
|
|
|
### `/status`
|
|
Show current settings (model, endpoint, working directory).
|
|
|
|
## Navigation Commands
|
|
|
|
### `/cwd` or `/pwd`
|
|
Show current working directory.
|
|
|
|
### `/cd <path>`
|
|
Change the current working directory.
|
|
|
|
### `/ls` or `/dir`
|
|
List files in the current directory (alias for ListDir).
|
|
|
|
## Model/Config Commands
|
|
|
|
### `/model <name>`
|
|
Change the AI model being used.
|
|
|
|
### `/endpoint <url>`
|
|
Change the API endpoint.
|
|
|
|
### `/config`
|
|
Show or edit configuration settings.
|
|
|
|
## File Operations
|
|
|
|
### `/save <filename>`
|
|
Save the current conversation to a file.
|
|
|
|
### `/load <filename>`
|
|
Load a previous conversation from a file.
|
|
|
|
### `/export <filename>`
|
|
Export chat history in a different format (JSON, markdown).
|
|
|
|
## Utility Commands
|
|
|
|
### `/version`
|
|
Show AnchorCli version information.
|
|
|
|
### `/about`
|
|
Show information about the tool.
|
|
|
|
### `/tools`
|
|
List available AI tools and their capabilities.
|
|
|
|
### `/debug`
|
|
Toggle debug mode for more verbose output.
|
|
|
|
## Advanced Ideas
|
|
|
|
### `/undo`
|
|
Undo the last file edit (would require edit history tracking).
|
|
|
|
### `/diff <file>`
|
|
Show differences between current and original file state.
|
|
|
|
### `/search <pattern>`
|
|
Quick file search across the project.
|
|
|
|
### `/stats`
|
|
Show statistics (files edited, commands run, etc.).
|
|
|
|
### `/alias <name> <command>`
|
|
Create custom command aliases.
|
|
|
|
### `/macro <name>`
|
|
Create and run multi-step macros.
|