docs(plans): record Matrix adapter completion
This commit is contained in:
@@ -102,6 +102,13 @@ telegram:
|
|||||||
bot_token: "your-telegram-bot-token"
|
bot_token: "your-telegram-bot-token"
|
||||||
allowed_chat_ids: [123456789] # Your Telegram user ID
|
allowed_chat_ids: [123456789] # Your Telegram user ID
|
||||||
|
|
||||||
|
# Optional: Matrix
|
||||||
|
matrix:
|
||||||
|
homeserver_url: "https://matrix.example.org"
|
||||||
|
access_token: "${MATRIX_ACCESS_TOKEN}"
|
||||||
|
allowed_room_ids: ["!room1:example.org"]
|
||||||
|
require_mention: true
|
||||||
|
|
||||||
models:
|
models:
|
||||||
default:
|
default:
|
||||||
provider: anthropic
|
provider: anthropic
|
||||||
@@ -818,7 +825,7 @@ src/
|
|||||||
├── agents/ # Multi-agent routing
|
├── agents/ # Multi-agent routing
|
||||||
├── auth/ # OAuth flows (GitHub Copilot)
|
├── auth/ # OAuth flows (GitHub Copilot)
|
||||||
├── backends/native/ # Agent implementation + orchestrator
|
├── backends/native/ # Agent implementation + orchestrator
|
||||||
├── channels/ # Channel adapters (Telegram, Discord, Slack, WhatsApp, WebChat)
|
├── channels/ # Channel adapters (Telegram, Discord, Slack, WhatsApp, Matrix, WebChat)
|
||||||
│ └── pairing.ts # DM pairing code manager
|
│ └── pairing.ts # DM pairing code manager
|
||||||
├── cli/ # CLI commands (commander)
|
├── cli/ # CLI commands (commander)
|
||||||
│ └── completion.ts # Shell completion generator (bash/zsh/fish)
|
│ └── completion.ts # Shell completion generator (bash/zsh/fish)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
+30
-2
@@ -136,6 +136,34 @@
|
|||||||
],
|
],
|
||||||
"test_status": "pnpm typecheck + pnpm test:run passing"
|
"test_status": "pnpm typecheck + pnpm test:run passing"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"matrix-channel-adapter": {
|
||||||
|
"file": "2026-02-15-matrix-channel-adapter.md",
|
||||||
|
"status": "completed",
|
||||||
|
"date": "2026-02-16",
|
||||||
|
"updated": "2026-02-16",
|
||||||
|
"summary": "Added a Matrix channel adapter using the Matrix Client-Server API v3 (/sync long-poll + /send), with config schema support, daemon registration, services dashboard reporting, and secret redaction.",
|
||||||
|
"files_created": [
|
||||||
|
"docs/plans/2026-02-15-matrix-channel-adapter.md",
|
||||||
|
"src/channels/matrix/adapter.ts",
|
||||||
|
"src/channels/matrix/adapter.test.ts",
|
||||||
|
"src/channels/matrix/index.ts"
|
||||||
|
],
|
||||||
|
"files_modified": [
|
||||||
|
"README.md",
|
||||||
|
"src/config/schema.ts",
|
||||||
|
"src/config/schema.test.ts",
|
||||||
|
"src/channels/index.ts",
|
||||||
|
"src/daemon/channels.ts",
|
||||||
|
"src/gateway/handlers/services.ts",
|
||||||
|
"src/gateway/handlers/services.test.ts",
|
||||||
|
"src/gateway/handlers/config.ts",
|
||||||
|
"src/gateway/handlers/handlers.test.ts",
|
||||||
|
"src/cli/shared.ts",
|
||||||
|
"src/cli/shared.test.ts"
|
||||||
|
],
|
||||||
|
"test_status": "pnpm typecheck + pnpm test:run (1689 tests) passing"
|
||||||
|
},
|
||||||
"openclaw-style-personal-agent-without-openclaw-risks": {
|
"openclaw-style-personal-agent-without-openclaw-risks": {
|
||||||
"file": "2026-02-14-openclaw-style-personal-agent-without-openclaw-risks-plan.md",
|
"file": "2026-02-14-openclaw-style-personal-agent-without-openclaw-risks-plan.md",
|
||||||
"status": "completed",
|
"status": "completed",
|
||||||
@@ -2095,7 +2123,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
"overall_progress": {
|
"overall_progress": {
|
||||||
"total_test_count": 1632,
|
"total_test_count": 1689,
|
||||||
"all_tests_passing": true,
|
"all_tests_passing": true,
|
||||||
"p0_completion": "3/3 (100%)",
|
"p0_completion": "3/3 (100%)",
|
||||||
"p1_completion": "4/4 (100%)",
|
"p1_completion": "4/4 (100%)",
|
||||||
@@ -2110,7 +2138,7 @@
|
|||||||
"tier2_completion": "4/4 (100%) — inbound webhooks, vector memory search, Dockerfile, heartbeat monitor",
|
"tier2_completion": "4/4 (100%) — inbound webhooks, vector memory search, Dockerfile, heartbeat monitor",
|
||||||
"tier3_completion": "5/5 (100%) — lane queue, credential redaction, web UI token dashboard, xAI (Grok) provider, Voyage AI embeddings",
|
"tier3_completion": "5/5 (100%) — lane queue, credential redaction, web UI token dashboard, xAI (Grok) provider, Voyage AI embeddings",
|
||||||
"tier4_completion": "4/4 (100%) — gateway lock, shell completion, Tailscale Serve/Funnel, DM pairing codes",
|
"tier4_completion": "4/4 (100%) — gateway lock, shell completion, Tailscale Serve/Funnel, DM pairing codes",
|
||||||
"feature_gap_scorecard": "101/128 match (79%), 0 partial (0%), 27 missing (21%)",
|
"feature_gap_scorecard": "102/128 match (80%), 0 partial (0%), 26 missing (20%)",
|
||||||
"operator_dx_milestone": "Phase 3 (Live Ops Dashboard): 2/2 plans complete — milestone done",
|
"operator_dx_milestone": "Phase 3 (Live Ops Dashboard): 2/2 plans complete — milestone done",
|
||||||
"gmail_auth_cli": "flynn gmail-auth command implemented with OAuth2 flow, doctor check, config routed to Telegram",
|
"gmail_auth_cli": "flynn gmail-auth command implemented with OAuth2 flow, doctor check, config routed to Telegram",
|
||||||
"native_audio_support": "completed — smart routing for native audio (Gemini/OpenAI/GitHub) vs Whisper transcription fallback",
|
"native_audio_support": "completed — smart routing for native audio (Gemini/OpenAI/GitHub) vs Whisper transcription fallback",
|
||||||
|
|||||||
Reference in New Issue
Block a user