🎯 All you need. Nothing you don't. Open source project management that works for you, not against you.
git clone https://github.com/usekaneo/kaneoResumen de Tools
<p align="center">
<a href="https://kaneo.app">
<img src="https://assets.kaneo.app/logo-text.png" alt="Kaneo's logo" width="450" />
</a>
</p>
<div align="center">
[](LICENSE)
[](https://github.com/usekaneo/kaneo/actions)
[](https://discord.gg/rU4tSyhXXU)
[](https://github.com/sponsors/andrejsshell)
</div>
<div align="center">
<h3>
<a href="https://kaneo.app/docs/core">Quick Start</a>
<span> | </span>
<a href="https://kaneo.app">Website</a>
<span> | </span>
<a href="https://cloud.kaneo.app">Cloud</a>
<span> | </span>
<a href="https://discord.gg/rU4tSyhXXU">Discord</a>
</h3>
</div>
<p align="center">
<img src="https://assets.kaneo.app/readme.png" alt="Kaneo Dashboard" />
</p>
## Why Kaneo?
After years of using bloated, overcomplicated project management platforms that distracted from actual work, we built Kaneo to be different.
The problem with most tools isn't that they lack features, it's that they have **too many**. Every notification, every unnecessary button, every complex workflow pulls your team away from what matters: **building great products**.
We believe the best tools are **invisible**. They should amplify your team's natural workflow, not force you to adapt to theirs. Kaneo is built on the principle that **less is more**: every feature exists because it solves a real problem, not because it looks impressive in a demo.
**What makes it different:**
- **Clean interface** that focuses on your work, not the tool
- **Self-hosted** so your data stays yours
- **Actually fast** because we care about performance
- **Open source** with a permissive MIT license
Learn more about Kaneo's features and capabilities in our [documentation](https://kaneo.app/docs/core).
## Sponsors
Kaneo is open source. If you find it useful, consider [sponsoring the project](https://github.com/sponsors/andrejsshell) to help support ongoing development.
<!-- sponsors --><a href="https://github.com/danielsada"><img src="https://github.com/danielsada.png" width="60px" alt="User avatar: Daniel Sada" /></a><a href="https://github.com/randoneering"><img src="https://github.com/randoneering.png" width="60px" alt="User avatar: (justin)randoneering" /></a><a href="https://github.com/floreabogdan"><img src="https://github.com/floreabogdan.png" width="60px" alt="User avatar: Bogdan FLOREA" /></a><a href="https://github.com/meruw"><img src="https://github.com/meruw.png" width="60px" alt="User avatar: meri" /></a><!-- sponsors -->
## Getting Started
### One-Click Deployment with drim
For straightforward deployments, use [drim](https://github.com/usekaneo/drim) - a CLI tool that handles everything for you:
```bash
curl -fsSL https://assets.kaneo.app/install.sh | sh
drim setup
```
That's it. Your Kaneo instance will be running with automatic HTTPS, database setup, and all services configured.
Perfect for quick deployments and production setups where you want things to just work.
### Quick Start with Docker Compose
The fastest way to try Kaneo is with Docker Compose. This sets up Kaneo and PostgreSQL with a single Kaneo container:
```yaml
services:
postgres:
image: postgres:16-alpine
env_file:
- .env
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U kaneo -d kaneo"]
interval: 10s
timeout: 5s
retries: 5
kaneo:
image: ghcr.io/usekaneo/kaneo:latest
ports:
- "5173:5173"
env_file:
- .env
depends_on:
postgres:
condition: service_healthy
restart: unless-stopped
volumes:
postgres_data:
```
Save this as `compose.yml`, copy `.env.sample` to `.env`, uncomment `KANEO_CLIENT_URL=http://localhost:5173`, and set `POSTGRES_PASSWORD=<password>` and `AUTH_SECRET=<output of openssl rand -hex 32>`, run `docker compose up -d`, and open [http://localhost:5173](http://localhost:5173).
In Docker Compose, the bundled Kaneo container reaches PostgreSQL at the service hostname `postgres`.
If you run the API on your host instead of inside Compose, use `localhost` or set `DATABASE_URL` explicitly.
> **Important:** See our [full documentation](https://kaneo.app/docs/core) for detailed setup instructions, environment variable configuration, and troubleshooting guides.
### Development Setup
For development, see our [Environment Setup Guide](ENVIRONMENT_SETUP.md) for detailed instructions on configuring environment variables and troubleshooting common issues like CORS problems.
### Configuration
Kaneo requires several environment variables to be configured. The Docker Compose setup above handles the database automatically, but you'll need to configure environment variables for the API and web services.
For complete configuration instructions, including all required environment variables, database setup for non-Docker deployments, and advanced settings, see the [documentation](https://kaneo.app/docs/core). Advanced deployments can still use the separate `ghcr.io/usekaneo/api` and `ghcr.io/usekaneo/web` images.
## Kubernetes Deployment
If you're running Kubernetes, we provide a comprehensive Helm chart. Check out the [Helm chart documentation](./charts/kaneo/README.md) for detailed installation instructions, production configuration examples, TLS setup, and more.
## Development
Want to hack on Kaneo? See our [Environment Setup Guide](ENVIRONMENT_SETUP.md) for detailed instructions on configuring environment variables and troubleshooting common issues like CORS problems.
Quick start:
```bash
# Clone and install dependencies
git clone https://github.com/usekaneo/kaneo.git
cd kaneo
pnpm install
# Create a .env file in the root with required environment variables
# See ENVIRONMENT_SETUP.md for detailed instructions
# Start development servers
pnpm dev
```
For contributing guidelines, code structure, and development best practices, check out our [contributing guide](CONTRIBUTING.md) and [documentation](https://kaneo.app/docs/core).
## MCP Server
Kaneo has an official [MCP (Model Context Protocol) server](https://docs.kaneo.app/core/integrations/mcp), so AI tools like Claude, Cursor, and other MCP clients can manage your tasks, projects, and labels. Every instance ships a built-in HTTP MCP endpoint at `/api/mcp`, and for stdio clients there is the official [@kaneo/mcp](https://www.npmjs.com/package/@kaneo/mcp) package on npm (`npx -y @kaneo/mcp`).
## Community
- **[Discord](https://discord.gg/rU4tSyhXXU)** - Chat with users and contributors
- **[GitHub Issues](https://github.com/usekaneo/kaneo/issues)** - Bug reports and feature requests
- **[Documentation](https://kaneo.app/docs/core)** - Detailed guides, API docs, and tutorials
## Contributing
We're always looking for help, whether that's:
- Reporting bugs or suggesting features
- Improving documentation
- Contributing code
- Helping other users on Discord
Check out [CONTRIBUTING.md](CONTRIBUTING.md) for the details on how to get involved.
## License
MIT License - see [LICENSE](LICENSE) for details.
---
<div align="center">
<img src="https://repobeats.axiom.co/api/embed/3e8367ec2b2350e4fc48662df33c81dac657b833.svg" alt="Repobeats analytics image" />
</div>
<p align="center">
Built with ❤️ by the Kaneo team and <a href="#contributors">contributors</a>
</p>
Lo que la gente pregunta sobre kaneo
¿Qué es usekaneo/kaneo?
+
usekaneo/kaneo es tools para el ecosistema de Claude AI. 🎯 All you need. Nothing you don't. Open source project management that works for you, not against you. Tiene 7.3k estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala kaneo?
+
Puedes instalar kaneo clonando el repositorio (https://github.com/usekaneo/kaneo) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar usekaneo/kaneo?
+
usekaneo/kaneo aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene usekaneo/kaneo?
+
usekaneo/kaneo es mantenido por usekaneo. La última actividad registrada en GitHub es de today, con 53 issues abiertos.
¿Hay alternativas a kaneo?
+
Sí. En ClaudeWave puedes explorar tools similares en /categories/tools, ordenados por popularidad o actividad reciente.
Despliega kaneo en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/usekaneo-kaneo)<a href="https://claudewave.com/repo/usekaneo-kaneo"><img src="https://claudewave.com/api/badge/usekaneo-kaneo" alt="Featured on ClaudeWave: usekaneo/kaneo" width="320" height="64" /></a>Más Tools
A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.
An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman
CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies
The fastest, litest AI Gateway. Rust core with Python SDK. Call 100+ LLM APIs in OpenAI (or native) format with cost tracking, guardrails, load balancing, and logging [Bedrock, Azure, OpenAI, Anthropic, OpenAI, VertexAI, vLLM, Nvidia NIM]
A collection of notebooks/recipes showcasing some fun and effective ways of using Claude.