Remove redundant Wiki operation log - #2367
Merged
Merged
Conversation
lyingbug
marked this pull request as ready for review
July 28, 2026 03:17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/wiki/logroute, repository/service/types, and storage writeswiki.content_changedsummaries in the knowledge-base activity feed as the single activity surfacelogpage type and stalewiki_read_page("log")model guidancewiki_log_entriesand legacy log-type pages through PostgreSQL and SQLite migrationsWhy
The Wiki operation log duplicated the knowledge-base Activity view and was not used by Wiki retrieval. The model prompt still treated
logas a special page even though the dedicated event table was never exposed throughwiki_read_page, leaving a stale retrieval contract.Impact
Wiki mutations remain visible through the knowledge-base Activity view. Applying the migration permanently removes existing dedicated Wiki log rows; rollback recreates only the empty schema and cannot restore deleted rows.
Validation
npm run buildgo test ./internal/application/service ./internal/application/repository ./internal/handler ./internal/router ./internal/agent/tools ./internal/typesmake docsgit diff --checkKnown repository baselines remain outside this change: frontend type-check errors in
sessionSidebarBuckets.ts,AgentEditorModal.vue, andSystemSettings.vue; full internal tests also retain existing Feishu logging and Notion/docparser SSRF fixture failures.