Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Evincere/klisk/llms.txt
Use this file to discover all available pages before exploring further.
Usage
Description
Lists all Klisk projects in your workspace directory (~/klisk/). Shows key information about each project including model, entry point, and path.
Output Format
For each project, displays:- Name - Project name from
klisk.config.yaml - Model - Default model configured for the project
- Entry - Entry point file (usually
main.py) - Path - Full filesystem path to the project
Examples
With Projects
No Projects
Use Cases
Quick Overview
Get a snapshot of all your projects:Find Project Paths
Locate the filesystem path for a project:Verify Project Configuration
Check which models are configured:Before Workspace Mode
Review all projects before starting workspace mode:Project Discovery
The command:- Scans
~/klisk/for subdirectories - Looks for
klisk.config.yamlin each directory - Loads configuration to extract:
- Project name
- Default model
- Entry point
- Sorts projects alphabetically by name
What’s Included
Displayed:- Projects with valid
klisk.config.yaml - Projects using default configuration (if no config file)
- Directories without Klisk projects
- Hidden directories (starting with
.) - Non-directory files
Configuration Details
Model Display
The model shown is fromklisk.config.yaml:
gpt-5.2.
Note: Individual agents can override this with their own model parameters.
Entry Point Display
The entry point is fromklisk.config.yaml:
main.py.
Project Count
The header shows the total number of projects:Workspace Directory
By default, projects are stored in:klisk list unless you move them to ~/klisk/.
Related Commands
klisk create- Create a new projectklisk dev- Start development server (workspace mode loads all listed projects)klisk check- Validate a specific projectklisk run- Run an agent from a specific project
Tips
Combine with grep
Filter for specific projects:Count Projects
Find Projects by Model
List all projects using Claude:Export to File
Troubleshooting
No Projects Found
If you get “No projects found” but expect projects:-
Check the workspace directory:
-
Verify projects have config files:
-
Create a test project:
Incorrect Information
If project details are wrong:-
Check the config file:
-
Validate the project:
When to Use
- Before workspace mode: See which projects will be loaded
- After creating projects: Verify they were created correctly
- Project inventory: Get an overview of all your agents
- Path lookup: Find where a project is stored
- Model audit: Review which models you’re using across projects