@gzmagyari/kanbanboard 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +48 -0
- package/API.md +1256 -0
- package/README.md +138 -0
- package/bin/cli.mjs +437 -0
- package/cron-sync.mjs +9 -0
- package/db.mjs +378 -0
- package/docs/project-manager-chat.md +202 -0
- package/kanban-mcp-server.mjs +377 -0
- package/kanban.mjs +127 -0
- package/lib/paths.mjs +136 -0
- package/llm.mjs +307 -0
- package/package.json +52 -0
- package/public/index.html +4747 -0
- package/repo-grounding.mjs +417 -0
- package/server.mjs +8607 -0
package/.env.example
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# ============================================
|
|
2
|
+
# KanbanBoard Configuration
|
|
3
|
+
# ============================================
|
|
4
|
+
# Copy this file to .env and fill in your values.
|
|
5
|
+
# In installed mode, this file lives at ~/.kanbanboard/.env
|
|
6
|
+
# In development mode, it lives in the repo root.
|
|
7
|
+
|
|
8
|
+
# --- Server ---
|
|
9
|
+
PORT=3000
|
|
10
|
+
HOST=127.0.0.1
|
|
11
|
+
|
|
12
|
+
# --- LLM (OpenAI-compatible chat completions API) ---
|
|
13
|
+
# Set LLM_ENABLED=1 to enable AI features (task generation, planning, chat, etc.)
|
|
14
|
+
LLM_ENABLED=0
|
|
15
|
+
LLM_BASE_URL=
|
|
16
|
+
LLM_API_KEY=
|
|
17
|
+
LLM_MODEL=openrouter/google/gemini-3-pro-preview
|
|
18
|
+
# LLM_TIMEOUT_MS=45000
|
|
19
|
+
# LLM_TEMPERATURE=0
|
|
20
|
+
# LLM_LOG_BODY=1
|
|
21
|
+
|
|
22
|
+
# --- AI API Protection ---
|
|
23
|
+
# Set AI_API_KEY to require X-API-Key header on all AI endpoints
|
|
24
|
+
# AI_API_KEY=
|
|
25
|
+
# AI_RATE_LIMIT_PER_MIN=60
|
|
26
|
+
|
|
27
|
+
# --- Project/Repo Scanning ---
|
|
28
|
+
# AI_INIT_ALLOW_ANY=1
|
|
29
|
+
# AI_INIT_ALLOWED_ROOTS=/path/to/allowed/repos
|
|
30
|
+
# AI_INIT_MAX_FILES=400
|
|
31
|
+
# AI_INIT_MAX_FILE_BYTES=64000
|
|
32
|
+
# AI_INIT_MAX_TOTAL_BYTES=600000
|
|
33
|
+
|
|
34
|
+
# --- Claude Code / Repo Grounding ---
|
|
35
|
+
# REPO_GROUND_CLI_CMD=claude
|
|
36
|
+
# REPO_GROUND_TIMEOUT_MS=120000
|
|
37
|
+
# REPO_GROUND_MAX_OUTPUT_BYTES=2000000
|
|
38
|
+
|
|
39
|
+
# --- Chrome (for MCP agent DevTools integration) ---
|
|
40
|
+
# KANBAN_CHROME_PORT=9223
|
|
41
|
+
|
|
42
|
+
# --- Agent Background Queue ---
|
|
43
|
+
# AGENT_QUEUE_ENABLED=0
|
|
44
|
+
# AGENT_QUEUE_INTERVAL_MS=600000
|
|
45
|
+
# AGENT_QUEUE_MAX_REVISITS=2
|
|
46
|
+
|
|
47
|
+
# --- MCP Server (used by kanban-mcp-server.mjs) ---
|
|
48
|
+
# KANBAN_BASE_URL=http://localhost:3000
|