Skip to content

Commit fbee6bc

Browse files
loop: remove-memory-plugin-1 completed after 1 iterations (#213)
1 parent 7e07f74 commit fbee6bc

41 files changed

Lines changed: 43 additions & 3664 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ For local development setup, see the [Development Guide](https://chriswritescode
5858
- **Files** — Directory browser with tree view, syntax highlighting, create/rename/delete, ZIP download
5959
- **Schedules** — Recurring repo jobs with reusable prompts, run history, linked sessions, markdown-rendered output
6060
- **AI & OpenCode** — Model/provider configuration, OAuth for Anthropic/GitHub Copilot, custom agents, OpenCode server supervision and proxying
61-
- **MCP, Skills, Memory** — MCP server management, skill support, optional memory plugin with semantic search ([plugin repo](https://github.com/chriswritescode-dev/opencode-memory))
6261
- **Audio** — Text-to-speech and speech-to-text (browser + OpenAI-compatible)
6362
- **Mobile & Notifications** — Responsive PWA, mobile-first navigation, push notification support
6463

backend/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import { createOAuthRoutes } from './routes/oauth'
2929
import { createSSERoutes } from './routes/sse'
3030
import { createSSHRoutes } from './routes/ssh'
3131
import { createNotificationRoutes } from './routes/notifications'
32-
import { createMemoryRoutes } from './routes/memory'
3332
import { createMcpOauthProxyRoutes } from './routes/mcp-oauth-proxy'
3433
import { createAuthRoutes, createAuthInfoRoutes, syncAdminFromEnv } from './routes/auth'
3534
import { createAuth } from './auth'
@@ -330,7 +329,6 @@ protectedApi.route('/stt', createSTTRoutes(db))
330329
protectedApi.route('/sse', createSSERoutes())
331330
protectedApi.route('/ssh', createSSHRoutes(gitAuthService))
332331
protectedApi.route('/notifications', createNotificationRoutes(notificationService))
333-
protectedApi.route('/memory', createMemoryRoutes(db, openCodeClient))
334332
protectedApi.route('/prompt-templates', createPromptTemplateRoutes(db))
335333
protectedApi.route('/schedules', createScheduleRoutes(scheduleService))
336334

0 commit comments

Comments
 (0)