Skip to content

Instantly share code, notes, and snippets.

@up1
Last active February 3, 2026 07:11
Show Gist options
  • Select an option

  • Save up1/d9409c1f7319115476c4b4a0fe4c88bc to your computer and use it in GitHub Desktop.

Select an option

Save up1/d9409c1f7319115476c4b4a0fe4c88bc to your computer and use it in GitHub Desktop.
Hello Kimi code
$curl -L code.kimi.com/install.sh | bash
$kimi
╭────────────────────────────────────────────────────────────────────────╮
│ │
│ ▐█▛█▛█▌ Welcome to Kimi Code CLI! │
│ ▐█████▌ Send /help for help information. │
│ │ │
│ Session: c23cbb12-a6da-402a-a4c5-0c346d77efd3 │
│ Model: not set, send /login to login │
│ │
│ Tip: Kimi Code Web UI, a GUI version of Kimi Code, is now in technic │
│ al preview. Run `kimi web` to try it! │
│ │
╰────────────────────────────────────────────────────────────────────────╯
$kimi web
+==============================================================+
| █▄▀ █ █▀▄▀█ █ █▀▀ █▀█ █▀▄ █▀▀ |
| █ █ █ █ ▀ █ █ █▄▄ █▄█ █▄▀ ██▄ |
| |
| WEB UI (Technical Preview) |
| |
|--------------------------------------------------------------|
| |
| http://127.0.0.1:5494 |
| |
| Open the URL above in your browser |
| Please keep this process running |
| |
|--------------------------------------------------------------|
| |
| "Why use a CLI if we already invented GUIs?" |
| |
+==============================================================+
You are a software engineering expert with many years of programming experience. Please e │
│ xplore the current project directory to understand the project's architecture and main de │
│ tails. │
│ │
│ Task requirements: │
│ 1. Analyze the project structure and identify key configuration files (such as pyproject. │
│ toml, package.json, Cargo.toml, etc.). │
│ 2. Understand the project's technology stack, build process and runtime architecture. │
│ 3. Identify how the code is organized and main module divisions. │
│ 4. Discover project-specific development conventions, testing strategies, and deployment │
│ processes. │
│ │
│ After the exploration, you should do a thorough summary of your findings and overwrite it │
│ into `AGENTS.md` file in the project root. You need to refer to what is already in the fi │
│ le when you do so. │
│ │
│ For your information, `AGENTS.md` is a file intended to be read by AI coding agents. Expe │
│ ct the reader of this file know nothing about the project. │
│ │
│ You should compose this file according to the actual project content. Do not make any ass │
│ umptions or generalizations. Ensure the information is accurate and useful. You must use │
│ the natural language that is mainly used in the project's comments and documentation. │
│ │
│ Popular sections that people usually write in `AGENTS.md` are: │
│ │
│ - Project overview │
│ - Build and test commands │
│ - Code style guidelines │
│ - Testing instructions │
│ - Security considerations
• I'll develop a quotation management web application with Express.js and SQLite. Let me star
t by planning and implementing this.
• Used SetTodoList
• Set up project structure and dependencies ←
• Create SQLite database schema
• Create Express server and routes
• Create views (HTML templates)
• Implement PDF export functionality
• Test the application
• I've developed a complete Quotation Management Web Application for you. Here's a summary:
Features
• ✅ Create quotations with seller/customer info, line items, taxes, and notes
• ✅ Edit existing quotations
• ✅ View quotation details with totals calculation
• ✅ Export to PDF using Puppeteer for professional formatting
• ✅ SQLite database for data persistence
Project Structure
.
├── index.js # Main Express server
├── database.js # SQLite database setup
├── routes/
│ ├── quotations.js # CRUD routes
│ └── pdf.js # PDF export route
├── views/ # EJS templates
│ ├── layout.ejs # Base layout
│ ├── index.ejs # List all quotations
│ ├── form.ejs # Create/edit form
│ ├── detail.ejs # View quotation
│ └── error.ejs # Error page
├── quotations.db # SQLite database
└── package.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment