### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Setup Local Documentation Development Server Source: https://github.com/kilo-org/docs/blob/main/docs/extending/contributing-to-kilo.md These commands set up a local environment to preview documentation changes. Navigate to the 'docs' directory, install dependencies, and start the development server to see your updates in real-time. ```bash cd docs npm install npm start ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Clone Kilo Code Repository (Bash) Source: https://github.com/kilo-org/docs/blob/main/docs/extending/development-environment.md Clones the Kilo Code repository to your local machine. This is the first step after forking the repository to start development. ```bash git clone https://github.com/[YOUR-USERNAME]/kilocode.git cd kilocode ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Common Workflow Patterns Source: https://github.com/kilo-org/docs/blob/main/docs/features/slash-commands/workflows.mdx Illustrative examples of common workflow patterns that can be implemented in Kilo Code. These provide a starting point for automating release management, project setup, and code review preparation. ```markdown 1. Gather merged PRs since last release 2. Generate changelog from commit messages 3. Update version numbers 4. Create release branch and tag 5. Deploy to staging environment ``` ```markdown 1. Clone repository template 2. Install dependencies (`npm install`, `pip install -r requirements.txt`) 3. Configure environment files 4. Initialize database/services 5. Run initial tests ``` ```markdown 1. Search for TODO comments and debug statements 2. Run linting and formatting 3. Execute test suite 4. Generate PR description from recent commits ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Install Project Dependencies (Shell) Source: https://github.com/kilo-org/docs/blob/main/docs/extending/development-environment.md Installs all necessary project dependencies using pnpm. This command should be run after cloning the repository. ```shell pnpm install ``` -------------------------------- ### Install Built Extension (Shell) Source: https://github.com/kilo-org/docs/blob/main/docs/extending/development-environment.md Installs the built Kilo Code extension from the generated .vsix file. It automatically selects the latest version. ```shell code --install-extension "$(ls -1v bin/kilo-code-*.vsix | tail -n1)" ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Get System Monitor Status (No Arguments) Source: https://github.com/kilo-org/docs/blob/main/docs/features/tools/use-mcp-tool.md Example of a tool that retrieves the current system status without requiring any arguments. This is a basic utility for monitoring system health. ```xml system-monitor get_current_status {} ``` -------------------------------- ### Untitled No description -------------------------------- ### Scoped Search in Test Files (XML) Source: https://github.com/kilo-org/docs/blob/main/docs/features/tools/codebase-search.md This XML example shows how to scope a search to 'tests' directories, looking for 'mock data setup patterns'. This is useful for understanding testing strategies. ```xml mock data setup patterns tests ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Test Utilities Search with Path Scoping (XML) Source: https://github.com/kilo-org/docs/blob/main/docs/features/tools/codebase-search.md This XML example searches for 'test setup and mock data creation' within the 'tests' directory, useful for understanding the project's testing framework. ```xml test setup and mock data creation tests ```