yan-istart231 downloadsGenerate structured knowledge notes from questions and selected text using DeepSeek AI, with automatic concept pages, bidirectional links, and a question graph.
Turn your Obsidian vault into a knowledge-to-action system.
简体中文 · Quick Start · Privacy · Roadmap
IStart-Note-AI is an Obsidian plugin built around three modules — Knowledge, Execution, and Auxiliary — that help you turn scattered notes into a searchable, interlinked, and actionable personal knowledge system.
One unified AI entry point connects all three: ask questions, generate structured notes, build execution plans, and keep everything synced — all through natural language.
[!warning] Beta v2.0.0 introduces significant architectural changes. The frontmatter schema and scheduled-task model are not yet stable. Back up your vault before upgrading.
Build and maintain a structured knowledge base.
[[source]] references (metadata-based index, no embeddings).Turn knowledge into reviewable actions.
Knowledge/_Executions/ after each plan is applied.Knowledge/_ExecutionPlans/ for create-plan-only tasks (user reviews before applying).create-plan-only never auto-executes; auto-execute-low-risk only applies plans with riskLevel: "low".Keep the system usable across devices and providers.
| Module | Feature | Status | Notes |
|---|---|---|---|
| Knowledge | AI Assistant | Stable | Insert / replace / append / show via unified entry |
| Knowledge | Reading Projects | Stable | Skeleton, chapter questions, summaries, Feynman |
| Knowledge | Concept Completion | Experimental | Exposed in command panel, preview before write |
| Knowledge | Question Graph | Experimental | Classification + index + Mermaid evolution graph |
| Knowledge | Vault QA | Experimental | Metadata-index retrieval, cited answers, no embeddings |
| Knowledge | Knowledge Debt | Experimental | Dashboard with empty/orphan/unfinished/stale stats |
| Execution | Execution Plan | Experimental | PlanBuilder + PlanExecutor + PlanDraftStore, no rollback yet |
| Execution | Execution Artifact Builder | Experimental | Generic checklist/routine/SOP/plan/review generator from any knowledge context |
| Execution | Scheduled Tasks | Foundation | Types + runner exist; runtime disabled by default in v2.0 |
| Auxiliary | Baidu Sync | Stable | Manual/auto backup and config sync |
| Auxiliary | Multi-provider LLM | Partial | OpenAI-compatible base URL supported |
Download main.js, manifest.json, styles.css from a GitHub Release and place them in <vault>/.obsidian/plugins/istart-note-ai/.
Don't clone the source repo — the bundle lives in
dist/and is not committed. Use release assets.
npm ci
npm run build
# → dist/main.js, dist/manifest.json, dist/styles.css
Settings are organized into three tabs:
| Tab | Key settings |
|---|---|
| Knowledge | Q&A path, Concepts path, Questions index path, knowledge index status + rebuild |
| Execution | Execution log path (read-only), scheduled tasks status (v2.1) |
| Auxiliary | API key, Base URL, model, output style, Baidu sync (App ID/Secret, remote path, auto-backup) |
IStart-Note-AI: AI 助手 or 知识库问答.IStart-Note-AI: AI 助手.src/
core/
llm/ Unified LLM client + JSON extractor
knowledge/ KnowledgeIndexService (metadata index)
execution/ ExecutionPlan, PlanBuilder, PlanExecutor, PlanDraftStore
artifact/ ExecutionArtifact types, prompt, validation, rendering
scheduler/ ScheduledTask types + runner (disabled in v2.0)
schema.ts SCHEMA_VERSION + helpers
ai/ AI feature modules (assistant, classifier, planner, ...)
features/
assistant/ AI assistant modals
artifact/ Artifact builder, preview, feature controller
concept/ Concept completion + page manager
question/ Question classify + graph manager
reading/ Reading project manager
dashboard/ Knowledge debt modal
sync/ Baidu sync
command-panel/ Unified command panel
vault/ Vault writer (conflict-safe)
settings/ Settings tab (tabbed layout)
actions/ Action registry + definitions
main.ts
AI features send your selection and partial note context to the configured chat-completions endpoint. Sync features upload to your own Baidu Pan. No telemetry. No plugin-operated servers. Full details in PRIVACY.md.
PRs and issues welcome. See CONTRIBUTING.md. Security issues: SECURITY.md.
MIT. See LICENSE.