feat(ideacloud): reconcile ideacloud module and KM adapter wiring#675
Merged
Conversation
Graph-structured knowledge capture with Obsidian-compatible markdown storage. Ingestion from Twitter bookmarks/likes, RSS feeds, Pulse trending topics, and manual paste. Auto-linking with blended Jaccard + overlap coefficient similarity, auto-clustering, wiki-link injection, proposition extraction, and full pipeline/debate export bridge. - 28 source files across graph, storage, ingestion, CLI, adapters - 91 tests across 3 test files, all passing - KnowledgeMound adapter with bidirectional sync (opt-in, priority 17) - Pipeline bridge: cluster → ideas/brain-dump/debate/UniversalNode - Embedding-based semantic similarity (optional, OpenAI/sentence-transformers) - Hierarchical storage (inbox/candidate/prioritized/exported dirs) - CLI registered in aragora cli parser with lazy loading - Pulse bridge for trending topic ingestion Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0c4f61c to
68d3abd
Compare
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
Fixes and enhancements for the Idea Cloud module (base code merged via reconcile PRs #670/#671).
recorddict was built but never passed tokm.ingest()— now callsawait self.km.ingest(record)for actual KnowledgeMound syncinjectvariable computed but never used — now passesinject_wiki_linkstoauto_link()aragora/ideacloud/cli/*to T201 per-file-ignores (CLI modules needprint)# ruff: noqa: T201tocommands.pyContext
The full Idea Cloud module (Phases 1-3) was built in a prior session and merged to main via reconcile PRs. This PR contains only the lint fixes and bug fixes that were applied after the initial code was snapshotted.
Test plan
pytest tests/test_ideacloud/ -v -o "addopts="— 93/93 passingruff check aragora/ideacloud/— all clean🤖 Generated with Claude Code