TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/remorses/kimaki/llms.txt
Use this file to discover all available pages before exploring further.
project list command shows all projects registered in the Kimaki database along with their associated Discord channels.
Usage
Output formats
Human-readable (default)
JSON output
Command options
Output as JSON instead of human-readable format. Useful for scripting and automation.
What gets listed
The command queries thechannel_directories table in the SQLite database and shows:
- Channel name: Fetched from Discord API (if bot has access)
- Folder name: Basename of the project directory
- Full directory path: Absolute path on your filesystem
- Channel ID: Discord channel ID
- Bot app ID: Which bot manages this channel (important for multi-bot setups)
Examples
List all projects
Get project data as JSON
Find a specific project
Count registered projects
Use cases
Audit registered channels
Verify which projects are registered and which Discord channels they map to:Export project list for backup
Script project enumeration
Behavior
- Database query: Reads from
channel_directoriestable - Discord API call: Attempts to fetch channel names from Discord
- Channel name fallback: If Discord API fails (channel deleted/bot removed), shows channel ID only
- Sorting: Channels listed by creation time (most recent first)
Channel names are fetched live from Discord. If a channel was deleted from Discord but still exists in the database, only the channel ID will be shown.
Troubleshooting
No projects registered
No projects registered
You haven’t added any projects yet. Run
kimaki project add to register a directory.Channel names not showing
Channel names not showing
The bot may have been removed from the Discord server or lost access to channels. The database entry remains, but channel names can’t be fetched.
Stale entries
Stale entries
If channels were deleted from Discord, they remain in the database. You can manually remove them from the SQLite database or ignore them.
Related
- project add - Register new projects
- Multiple instances - Running multiple bots