From b2b6bb2a4190d4f436b322d7f01cc2d837051a24 Mon Sep 17 00:00:00 2001 From: GAP Promoter Date: Mon, 1 Jun 2026 07:14:21 +0000 Subject: [PATCH] Add Yunle-Lee/KiLee-agent to the registry --- agents/Yunle-Lee__kilee-agent/README.md | 44 +++++++++++++++++++++ agents/Yunle-Lee__kilee-agent/metadata.json | 13 ++++++ 2 files changed, 57 insertions(+) create mode 100644 agents/Yunle-Lee__kilee-agent/README.md create mode 100644 agents/Yunle-Lee__kilee-agent/metadata.json diff --git a/agents/Yunle-Lee__kilee-agent/README.md b/agents/Yunle-Lee__kilee-agent/README.md new file mode 100644 index 0000000..75bf3c0 --- /dev/null +++ b/agents/Yunle-Lee__kilee-agent/README.md @@ -0,0 +1,44 @@ +# KiLee Agent + +**KiLee** is a DeepSeek-powered terminal AI agent that lets you read and write +files, run shell commands, search the web, and keep a persistent memory — all +from your command line. + +## What it does + +- 📁 **File operations** — read, write, edit, list directories, grep content +- 💻 **Shell execution** — run any bash command with risk-based approval +- 🌐 **Web** — search and fetch page content for up-to-date answers +- 🧠 **Memory** — save facts and preferences across sessions (`~/.kilee/memory.json`) +- 🗜️ **Context compression** — auto-compresses long conversations to preserve tokens +- 🔌 **Multi-provider** — DeepSeek (default), OpenAI, Groq, OpenRouter, or any + OpenAI-compatible endpoint + +## Installation + +```bash +git clone https://github.com/Yunle-Lee/KiLee-agent.git +cd KiLee-agent +pip install -e . +kilee # launches setup wizard on first run +``` + +## Usage + +```bash +kilee # interactive chat +kilee setup # configure API key and model +kilee whoami # show current config +``` + +Ask KiLee anything. It will use its tools to act, not just describe. + +## Context Engineering + +Drop a `KILEE.md` file in your project root — KiLee automatically injects it +into every session, giving it immediate awareness of your codebase, stack, and +conventions. + +## License + +MIT — [GitHub](https://github.com/Yunle-Lee/KiLee-agent) diff --git a/agents/Yunle-Lee__kilee-agent/metadata.json b/agents/Yunle-Lee__kilee-agent/metadata.json new file mode 100644 index 0000000..2c3d030 --- /dev/null +++ b/agents/Yunle-Lee__kilee-agent/metadata.json @@ -0,0 +1,13 @@ +{ + "name": "kilee-agent", + "author": "Yunle-Lee", + "description": "DeepSeek-powered terminal AI agent — reads files, runs shell commands, writes code, searches the web, and remembers facts across sessions.", + "repository": "https://github.com/Yunle-Lee/KiLee-agent", + "version": "0.3.0", + "category": "developer-tools", + "tags": ["terminal", "cli", "deepseek", "openai-compatible", "agentic", "file-management", "web-search", "persistent-memory"], + "license": "MIT", + "model": "deepseek-chat", + "adapters": ["system-prompt", "openai"], + "icon": false +}