@geminilight/mindos 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.local.example +38 -0
- package/LICENSE +21 -0
- package/README.md +423 -0
- package/README_zh.md +423 -0
- package/app/README.md +152 -0
- package/app/app/api/ask/route.ts +170 -0
- package/app/app/api/ask-sessions/route.ts +90 -0
- package/app/app/api/auth/route.ts +37 -0
- package/app/app/api/backlinks/route.ts +22 -0
- package/app/app/api/bootstrap/route.ts +37 -0
- package/app/app/api/extract-pdf/route.ts +82 -0
- package/app/app/api/file/route.ts +138 -0
- package/app/app/api/files/route.ts +12 -0
- package/app/app/api/git/route.ts +42 -0
- package/app/app/api/graph/route.ts +113 -0
- package/app/app/api/recent-files/route.ts +10 -0
- package/app/app/api/search/route.ts +17 -0
- package/app/app/api/settings/reset-token/route.ts +21 -0
- package/app/app/api/settings/route.ts +123 -0
- package/app/app/error.tsx +33 -0
- package/app/app/globals.css +368 -0
- package/app/app/icon.svg +35 -0
- package/app/app/layout.tsx +103 -0
- package/app/app/login/page.tsx +120 -0
- package/app/app/page.tsx +12 -0
- package/app/app/view/[...path]/ViewPageClient.tsx +343 -0
- package/app/app/view/[...path]/error.tsx +33 -0
- package/app/app/view/[...path]/loading.tsx +15 -0
- package/app/app/view/[...path]/page.tsx +93 -0
- package/app/components/AskFab.tsx +59 -0
- package/app/components/AskModal.tsx +398 -0
- package/app/components/Backlinks.tsx +75 -0
- package/app/components/Breadcrumb.tsx +31 -0
- package/app/components/CsvView.tsx +325 -0
- package/app/components/DirView.tsx +138 -0
- package/app/components/Editor.tsx +124 -0
- package/app/components/EditorWrapper.tsx +17 -0
- package/app/components/ErrorBoundary.tsx +53 -0
- package/app/components/FileTree.tsx +369 -0
- package/app/components/HomeContent.tsx +262 -0
- package/app/components/JsonView.tsx +27 -0
- package/app/components/MarkdownEditor.tsx +95 -0
- package/app/components/MarkdownView.tsx +118 -0
- package/app/components/SearchModal.tsx +193 -0
- package/app/components/SettingsModal.tsx +237 -0
- package/app/components/Sidebar.tsx +136 -0
- package/app/components/SidebarLayout.tsx +36 -0
- package/app/components/TableOfContents.tsx +150 -0
- package/app/components/ThemeToggle.tsx +34 -0
- package/app/components/WysiwygEditor.tsx +75 -0
- package/app/components/ask/FileChip.tsx +30 -0
- package/app/components/ask/MentionPopover.tsx +52 -0
- package/app/components/ask/MessageList.tsx +126 -0
- package/app/components/ask/SessionHistory.tsx +49 -0
- package/app/components/renderers/AgentInspectorRenderer.tsx +277 -0
- package/app/components/renderers/BacklinksRenderer.tsx +147 -0
- package/app/components/renderers/ConfigRenderer.tsx +236 -0
- package/app/components/renderers/CsvRenderer.tsx +77 -0
- package/app/components/renderers/DiffRenderer.tsx +310 -0
- package/app/components/renderers/GraphRenderer.tsx +428 -0
- package/app/components/renderers/SummaryRenderer.tsx +251 -0
- package/app/components/renderers/TimelineRenderer.tsx +213 -0
- package/app/components/renderers/TodoRenderer.tsx +474 -0
- package/app/components/renderers/WorkflowRenderer.tsx +404 -0
- package/app/components/renderers/csv/BoardView.tsx +146 -0
- package/app/components/renderers/csv/ConfigPanel.tsx +117 -0
- package/app/components/renderers/csv/EditableCell.tsx +43 -0
- package/app/components/renderers/csv/GalleryView.tsx +40 -0
- package/app/components/renderers/csv/TableView.tsx +164 -0
- package/app/components/renderers/csv/types.ts +87 -0
- package/app/components/settings/AiTab.tsx +111 -0
- package/app/components/settings/AppearanceTab.tsx +101 -0
- package/app/components/settings/KnowledgeTab.tsx +157 -0
- package/app/components/settings/PluginsTab.tsx +82 -0
- package/app/components/settings/Primitives.tsx +60 -0
- package/app/components/settings/ShortcutsTab.tsx +22 -0
- package/app/components/settings/types.ts +41 -0
- package/app/components/ui/button.tsx +60 -0
- package/app/components/ui/dialog.tsx +157 -0
- package/app/components/ui/input.tsx +20 -0
- package/app/components/ui/scroll-area.tsx +55 -0
- package/app/components/ui/toggle.tsx +44 -0
- package/app/components/ui/tooltip.tsx +66 -0
- package/app/components.json +25 -0
- package/app/data/pages/home-dark.png +0 -0
- package/app/data/pages/home-mobile-crop.png +0 -0
- package/app/data/pages/home-mobile.png +0 -0
- package/app/data/pages/home.png +0 -0
- package/app/data/pages/view-dir.png +0 -0
- package/app/data/pages/view-file-bot.png +0 -0
- package/app/data/pages/view-file-dark-crop.png +0 -0
- package/app/data/pages/view-file-dark.png +0 -0
- package/app/data/pages/view-file-mobile.png +0 -0
- package/app/data/pages/view-file-sm.png +0 -0
- package/app/data/pages/view-file-top.png +0 -0
- package/app/data/pages/view-file.png +0 -0
- package/app/eslint.config.mjs +18 -0
- package/app/hooks/useAskSession.ts +181 -0
- package/app/hooks/useFileUpload.ts +126 -0
- package/app/hooks/useMention.ts +65 -0
- package/app/lib/LocaleContext.tsx +40 -0
- package/app/lib/actions.ts +40 -0
- package/app/lib/agent/index.ts +3 -0
- package/app/lib/agent/model.ts +18 -0
- package/app/lib/agent/prompt.ts +32 -0
- package/app/lib/agent/tools.ts +151 -0
- package/app/lib/api.ts +55 -0
- package/app/lib/core/backlinks.ts +40 -0
- package/app/lib/core/csv.ts +28 -0
- package/app/lib/core/fs-ops.ts +118 -0
- package/app/lib/core/git.ts +50 -0
- package/app/lib/core/index.ts +58 -0
- package/app/lib/core/lines.ts +89 -0
- package/app/lib/core/search.ts +79 -0
- package/app/lib/core/security.ts +43 -0
- package/app/lib/core/tree.ts +113 -0
- package/app/lib/core/types.ts +40 -0
- package/app/lib/fs.ts +467 -0
- package/app/lib/i18n.ts +300 -0
- package/app/lib/jwt.ts +58 -0
- package/app/lib/renderers/index.ts +79 -0
- package/app/lib/renderers/registry.ts +70 -0
- package/app/lib/settings.ts +150 -0
- package/app/lib/types.ts +32 -0
- package/app/lib/utils.ts +34 -0
- package/app/next-env.d.ts +6 -0
- package/app/next.config.ts +10 -0
- package/app/package-lock.json +15306 -0
- package/app/package.json +71 -0
- package/app/postcss.config.mjs +7 -0
- package/app/proxy.ts +64 -0
- package/app/public/file.svg +1 -0
- package/app/public/globe.svg +1 -0
- package/app/public/landing/index.html +353 -0
- package/app/public/landing/style.css +216 -0
- package/app/public/logo-square.svg +37 -0
- package/app/public/logo.svg +37 -0
- package/app/public/next.svg +1 -0
- package/app/public/vercel.svg +1 -0
- package/app/public/window.svg +1 -0
- package/app/scripts/extract-pdf.cjs +56 -0
- package/app/tsconfig.json +34 -0
- package/app/vitest.config.ts +14 -0
- package/assets/demo-flow-zh.html +622 -0
- package/assets/images/demo-flow-dark.png +0 -0
- package/assets/images/demo-flow-light.png +0 -0
- package/assets/images/demo-flow-zh-dark.png +0 -0
- package/assets/images/demo-flow-zh-light.png +0 -0
- package/assets/images/gui-sync-cv.png +0 -0
- package/assets/logo-square.svg +37 -0
- package/bin/cli.js +894 -0
- package/mcp/README.md +113 -0
- package/mcp/package-lock.json +1717 -0
- package/mcp/package.json +18 -0
- package/mcp/src/index.ts +494 -0
- package/mcp/tsconfig.json +13 -0
- package/package.json +49 -0
- package/scripts/setup.js +675 -0
- package/scripts/upgrade-prompt.md +147 -0
- package/skills/mindos/SKILL.md +319 -0
- package/skills/mindos-zh/SKILL.md +318 -0
- package/templates/README.md +31 -0
- package/templates/empty/CHANGELOG.md +9 -0
- package/templates/empty/CONFIG.json +197 -0
- package/templates/empty/CONFIG.md +73 -0
- package/templates/empty/INSTRUCTION.md +177 -0
- package/templates/empty/README.md +27 -0
- package/templates/en/CHANGELOG.md +9 -0
- package/templates/en/CONFIG.json +197 -0
- package/templates/en/CONFIG.md +73 -0
- package/templates/en/INSTRUCTION.md +177 -0
- package/templates/en/README.md +27 -0
- package/templates/en/TODO.md +13 -0
- package/templates/en//360/237/221/244 Profile/INSTRUCTION.md" +21 -0
- package/templates/en//360/237/221/244 Profile/README.md" +15 -0
- package/templates/en//360/237/221/244 Profile//342/232/231/357/270/217 Preferences.md" +21 -0
- package/templates/en//360/237/221/244 Profile//360/237/216/257 Focus.md" +31 -0
- package/templates/en//360/237/221/244 Profile//360/237/221/244 Identity.md" +22 -0
- package/templates/en//360/237/223/232 Resources/INSTRUCTION.md" +29 -0
- package/templates/en//360/237/223/232 Resources/README.md" +21 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Influencers.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Products.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Scholars.csv" +1 -0
- package/templates/en//360/237/223/232 Resources//360/237/247/276 AI Tools.csv" +1 -0
- package/templates/en//360/237/223/235 Notes/INSTRUCTION.md" +31 -0
- package/templates/en//360/237/223/235 Notes/Ideas/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Ideas//360/237/247/252_example_product_idea.md" +16 -0
- package/templates/en//360/237/223/235 Notes/Inbox/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Inbox//360/237/247/252_example_quick_capture.md" +14 -0
- package/templates/en//360/237/223/235 Notes/Meetings/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Meetings//360/237/247/252_example_meeting_note.md" +17 -0
- package/templates/en//360/237/223/235 Notes/README.md" +24 -0
- package/templates/en//360/237/223/235 Notes/Waiting/README.md" +8 -0
- package/templates/en//360/237/223/235 Notes/Waiting//360/237/247/252_example_blocked_item.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Configurations/README.md" +3 -0
- package/templates/en//360/237/224/204 Workflows/Configurations//360/237/247/252_example_config_update_sop.md" +14 -0
- package/templates/en//360/237/224/204 Workflows/INSTRUCTION.md" +21 -0
- package/templates/en//360/237/224/204 Workflows/Information/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Information//360/237/247/252_example_info_capture_sop.md" +13 -0
- package/templates/en//360/237/224/204 Workflows/Media/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Media//360/237/247/252_example_content_publish_sop.md" +13 -0
- package/templates/en//360/237/224/204 Workflows/README.md" +22 -0
- package/templates/en//360/237/224/204 Workflows/Research/README.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Research//360/237/247/252_example_lit_review_sop.md" +16 -0
- package/templates/en//360/237/224/204 Workflows/Startup/README.md" +3 -0
- package/templates/en//360/237/224/204 Workflows/Startup//360/237/247/252_example_weekly_founder_ops.md" +22 -0
- package/templates/en//360/237/224/227 Connections/Classmates/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Classmates//360/237/247/252_example_leo_chen.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Colleagues/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Colleagues//360/237/247/252_example_ethan_zhao.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Connections Overview.csv" +5 -0
- package/templates/en//360/237/224/227 Connections/Family/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Family//360/237/247/252_example_james_wang.md" +16 -0
- package/templates/en//360/237/224/227 Connections/Friends/README.md" +11 -0
- package/templates/en//360/237/224/227 Connections/Friends//360/237/247/252_example_lily_lin.md" +16 -0
- package/templates/en//360/237/224/227 Connections/INSTRUCTION.md" +56 -0
- package/templates/en//360/237/224/227 Connections/README.md" +20 -0
- package/templates/en//360/237/232/200 Projects/Archived/README.md" +9 -0
- package/templates/en//360/237/232/200 Projects/Archived//360/237/247/252_example_archived_project_note.md" +14 -0
- package/templates/en//360/237/232/200 Projects/INSTRUCTION.md" +29 -0
- package/templates/en//360/237/232/200 Projects/Products/README.md" +16 -0
- package/templates/en//360/237/232/200 Projects/Products//360/237/247/252_example_product_project_brief.md" +20 -0
- package/templates/en//360/237/232/200 Projects/README.md" +21 -0
- package/templates/en//360/237/232/200 Projects/Research/README.md" +16 -0
- package/templates/en//360/237/232/200 Projects/Research//360/237/247/252_example_research_project_brief.md" +16 -0
- package/templates/template-generation-skill.md +79 -0
- package/templates/zh/CHANGELOG.md +9 -0
- package/templates/zh/CONFIG.json +197 -0
- package/templates/zh/CONFIG.md +66 -0
- package/templates/zh/INSTRUCTION.md +177 -0
- package/templates/zh/README.md +27 -0
- package/templates/zh/TODO.md +13 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217/INSTRUCTION.md" +28 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217/README.md" +20 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//342/232/231/357/270/217 Preferences.md" +21 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//360/237/216/257 Focus.md" +31 -0
- package/templates/zh//360/237/221/244 /347/224/273/345/203/217//360/237/221/244 Identity.md" +22 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220/INSTRUCTION.md" +29 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220/README.md" +21 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI Inferencers.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /344/272/247/345/223/201.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /345/255/246/350/200/205/346/270/205/345/215/225.csv" +1 -0
- package/templates/zh//360/237/223/232 /350/265/204/346/272/220//360/237/247/276 AI /345/267/245/345/205/267/346/270/205/345/215/225.csv" +1 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260/INSTRUCTION.md" +31 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260/README.md" +24 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//344/274/232/350/256/256/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//344/274/232/350/256/256//360/237/247/252_example_/344/274/232/350/256/256/347/272/252/350/246/201.md" +17 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//345/276/205/345/217/215/351/246/210/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//345/276/205/345/217/215/351/246/210//360/237/247/252_example_/345/276/205/345/217/215/351/246/210/344/272/213/351/241/271.md" +16 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/203/263/346/263/225/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/203/263/346/263/225//360/237/247/252_example_/344/272/247/345/223/201/346/203/263/346/263/225.md" +16 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/224/266/344/273/266/347/256/261/README.md" +8 -0
- package/templates/zh//360/237/223/235 /347/254/224/350/256/260//346/224/266/344/273/266/347/256/261//360/237/247/252_example_/344/270/264/346/227/266/351/200/237/350/256/260.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213/INSTRUCTION.md" +29 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213/README.md" +21 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//344/277/241/346/201/257/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//344/277/241/346/201/257//360/237/247/252_example_/344/277/241/346/201/257/351/207/207/351/233/206/346/265/201/347/250/213.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//345/252/222/344/275/223/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//345/252/222/344/275/223//360/237/247/252_example_/345/206/205/345/256/271/345/217/221/345/270/203/346/265/201/347/250/213.md" +13 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//347/247/221/347/240/224/README.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//347/247/221/347/240/224//360/237/247/252_example_/346/226/207/347/214/256/347/273/274/350/277/260/346/265/201/347/250/213.md" +16 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//351/205/215/347/275/256/README.md" +3 -0
- package/templates/zh//360/237/224/204 /346/265/201/347/250/213//351/205/215/347/275/256//360/237/247/252_example_/351/205/215/347/275/256/346/233/264/346/226/260/346/265/201/347/250/213.md" +26 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273/INSTRUCTION.md" +62 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273/README.md" +20 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/205/263/347/263/273/346/200/273/350/247/210.csv" +5 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/344/272/213/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/344/272/213//360/237/247/252_example_/345/220/214/344/272/213/350/265/265/344/270/200/350/276/260.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/345/255/246/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/220/214/345/255/246//360/237/247/252_example_/345/220/214/345/255/246/351/231/210/347/253/213/346/254/247.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/256/266/344/272/272/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//345/256/266/344/272/272//360/237/247/252_example_/345/256/266/344/272/272/347/216/213/345/273/272/345/233/275.md" +16 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//346/234/213/345/217/213/README.md" +11 -0
- package/templates/zh//360/237/224/227 /345/205/263/347/263/273//346/234/213/345/217/213//360/237/247/252_example_/346/234/213/345/217/213/346/236/227/345/260/217/344/270/275.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256/INSTRUCTION.md" +31 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256/README.md" +21 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//344/272/247/345/223/201/README.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//344/272/247/345/223/201//360/237/247/252_example_/344/272/247/345/223/201/351/241/271/347/233/256/347/256/200/346/212/245.md" +20 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//345/267/262/345/275/222/346/241/243/README.md" +9 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//345/267/262/345/275/222/346/241/243//360/237/247/252_example_/345/275/222/346/241/243/351/241/271/347/233/256/350/256/260/345/275/225.md" +15 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//347/247/221/347/240/224/README.md" +16 -0
- package/templates/zh//360/237/232/200 /351/241/271/347/233/256//347/247/221/347/240/224//360/237/247/252_example_/347/247/221/347/240/224/351/241/271/347/233/256/347/256/200/346/212/245.md" +16 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Directory Instruction Set
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
- Define local execution rules for this first-level directory.
|
|
6
|
+
|
|
7
|
+
## Local Rules
|
|
8
|
+
|
|
9
|
+
- Read root `INSTRUCTION.md` first.
|
|
10
|
+
- Then read this directory `README.md` for navigation.
|
|
11
|
+
- Keep edits minimal, structured, and traceable.
|
|
12
|
+
|
|
13
|
+
## Execution Order
|
|
14
|
+
|
|
15
|
+
1. Root `INSTRUCTION.md`
|
|
16
|
+
2. This directory `INSTRUCTION.md`
|
|
17
|
+
3. This directory `README.md` and target files
|
|
18
|
+
|
|
19
|
+
## Boundary
|
|
20
|
+
|
|
21
|
+
- Root rules win on conflict.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Profile
|
|
2
|
+
|
|
3
|
+
Primary entry for stable personal context and current operating state.
|
|
4
|
+
|
|
5
|
+
## Fill First
|
|
6
|
+
|
|
7
|
+
1. `👤 Identity.md`: who you are (identity, background, key achievements)
|
|
8
|
+
2. `⚙️ Preferences.md`: how you work (tools, communication, writing preferences)
|
|
9
|
+
3. `🎯 Focus.md`: what you are doing now (goals, current focus, routine)
|
|
10
|
+
|
|
11
|
+
## Maintenance Rules
|
|
12
|
+
|
|
13
|
+
- Keep it minimal and practical; avoid over-fragmentation.
|
|
14
|
+
- Update `🎯 Focus.md` regularly (for example, weekly).
|
|
15
|
+
- Put stable facts in `👤 Identity.md` and behavior preferences in `⚙️ Preferences.md`.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# ⚙️ Preferences
|
|
2
|
+
|
|
3
|
+
## Work Style
|
|
4
|
+
|
|
5
|
+
<!-- Working hours, focus style, rest rhythm -->
|
|
6
|
+
|
|
7
|
+
## Tool Preferences
|
|
8
|
+
|
|
9
|
+
<!-- Editor, terminal, browser, notes tooling -->
|
|
10
|
+
|
|
11
|
+
## Communication Preferences
|
|
12
|
+
|
|
13
|
+
<!-- concise/detailed, Chinese/English, formal/casual -->
|
|
14
|
+
|
|
15
|
+
## Writing Preferences
|
|
16
|
+
|
|
17
|
+
<!-- tone, structure preference, wording to avoid -->
|
|
18
|
+
|
|
19
|
+
## AI Interaction Preferences
|
|
20
|
+
|
|
21
|
+
<!-- preferred response style, length, and format -->
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# 🎯 Focus
|
|
2
|
+
|
|
3
|
+
> Current-stage snapshot. Update regularly.
|
|
4
|
+
|
|
5
|
+
## Long-Term Goals (3-5 years)
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Annual Goals
|
|
10
|
+
|
|
11
|
+
-
|
|
12
|
+
|
|
13
|
+
## Current Quarter Priorities
|
|
14
|
+
|
|
15
|
+
-
|
|
16
|
+
|
|
17
|
+
## Current Focus
|
|
18
|
+
|
|
19
|
+
<!-- What you are working on and current stage -->
|
|
20
|
+
|
|
21
|
+
## Recent Context
|
|
22
|
+
|
|
23
|
+
<!-- Important recent events, decisions, or changes -->
|
|
24
|
+
|
|
25
|
+
## Active Projects
|
|
26
|
+
|
|
27
|
+
<!-- Project name -> current status / phase -->
|
|
28
|
+
|
|
29
|
+
## Routine
|
|
30
|
+
|
|
31
|
+
<!-- Deep-work windows and recurring commitments -->
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# 👤 Identity
|
|
2
|
+
|
|
3
|
+
## Basic Info
|
|
4
|
+
|
|
5
|
+
- **Name**:
|
|
6
|
+
- **Role**:
|
|
7
|
+
- **Location**:
|
|
8
|
+
- **Organization/Company**:
|
|
9
|
+
|
|
10
|
+
## Professional Background
|
|
11
|
+
|
|
12
|
+
<!-- Education, research areas, work experience -->
|
|
13
|
+
|
|
14
|
+
## Current Roles
|
|
15
|
+
|
|
16
|
+
<!-- Primary roles: researcher / engineer / founder / student -->
|
|
17
|
+
|
|
18
|
+
## Key Achievements
|
|
19
|
+
|
|
20
|
+
- Academic:
|
|
21
|
+
- Product:
|
|
22
|
+
- Other:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Resources Directory Instruction Set
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
- Define local execution rules for `📚 Resources/`.
|
|
6
|
+
- Standardize maintenance of AI resource index CSV files.
|
|
7
|
+
|
|
8
|
+
## Local Rules
|
|
9
|
+
|
|
10
|
+
- Read root `INSTRUCTION.md` first, then this file.
|
|
11
|
+
- This directory is CSV-first; avoid unindexed temporary documents.
|
|
12
|
+
- Reuse existing CSV themes before creating new ones.
|
|
13
|
+
- Validate header and field semantics before appending rows.
|
|
14
|
+
|
|
15
|
+
## Execution Order
|
|
16
|
+
|
|
17
|
+
1. Root `INSTRUCTION.md`
|
|
18
|
+
2. This directory `INSTRUCTION.md`
|
|
19
|
+
3. This directory `README.md` and target files
|
|
20
|
+
|
|
21
|
+
## Boundary
|
|
22
|
+
|
|
23
|
+
- Root rules win on conflict.
|
|
24
|
+
|
|
25
|
+
## Sync Rules (Resources)
|
|
26
|
+
|
|
27
|
+
- On add/rename of CSV files: update `📚 Resources/README.md` structure and usage.
|
|
28
|
+
- On schema changes: sync field semantics across related CSV files.
|
|
29
|
+
- After bulk changes: run `rg` to clean stale references.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Resources
|
|
2
|
+
|
|
3
|
+
External resource collections and structured indexes.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
📚 Resources/
|
|
9
|
+
├── README.md
|
|
10
|
+
├── INSTRUCTION.md
|
|
11
|
+
├── 🧾 AI Products.csv
|
|
12
|
+
├── 🧾 AI Influencers.csv
|
|
13
|
+
├── 🧾 AI Tools.csv
|
|
14
|
+
└── 🧾 AI Scholars.csv
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
- Use CSV as the primary index for resource tracking.
|
|
20
|
+
- Validate headers and field semantics before appending rows.
|
|
21
|
+
- Follow execution and sync rules in `INSTRUCTION.md`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name,Platform,Focus,Region,Link,Status,UpdatedAt,Notes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name,Category,Website,CoreValue,Pricing,Status,UpdatedAt,Notes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name,Institution,ResearchArea,ProfileLink,Region,Status,UpdatedAt,Notes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Name,Type,PrimaryUse,Website,Pricing,Status,UpdatedAt,Notes
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Notes Directory Instruction Set
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
- Define local execution rules for `📝 Notes/`.
|
|
6
|
+
- Keep quick capture and archive flow consistent.
|
|
7
|
+
|
|
8
|
+
## Local Rules
|
|
9
|
+
|
|
10
|
+
- Read root `INSTRUCTION.md` first, then this file.
|
|
11
|
+
- Use this directory for short-lived drafts and capture notes.
|
|
12
|
+
- New notes should start in `Inbox/`, then be routed into `Waiting/`, `Meetings/`, or `Ideas/`.
|
|
13
|
+
- Move stabilized content into domain directories (`👤 Profile/`, `🔄 Workflows/`, `🚀 Projects/`, `📚 Resources/`).
|
|
14
|
+
- Remove or archive source notes after migration when no longer needed.
|
|
15
|
+
|
|
16
|
+
## Execution Order
|
|
17
|
+
|
|
18
|
+
1. Root `INSTRUCTION.md`
|
|
19
|
+
2. This directory `INSTRUCTION.md`
|
|
20
|
+
3. This directory `README.md` and target files
|
|
21
|
+
|
|
22
|
+
## Boundary
|
|
23
|
+
|
|
24
|
+
- Root rules win on conflict.
|
|
25
|
+
|
|
26
|
+
## Sync Rules (Notes)
|
|
27
|
+
|
|
28
|
+
- On add/rename of second-level folders: update `📝 Notes/README.md` structure and usage.
|
|
29
|
+
- Keep filename language and naming policy consistent.
|
|
30
|
+
- On note migration: update affected references to avoid dangling paths.
|
|
31
|
+
- Confirm scope before bulk triage/refactor.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# 💡 Product Idea Example: Trust Layer for Personal AI
|
|
2
|
+
|
|
3
|
+
## Concept
|
|
4
|
+
- Add a "Trust Trace" panel that shows where each generated answer came from in the user's own knowledge base.
|
|
5
|
+
|
|
6
|
+
## User Promise
|
|
7
|
+
- "You don't just get answers. You see evidence."
|
|
8
|
+
|
|
9
|
+
## Why It Can Win
|
|
10
|
+
- Converts skepticism into confidence.
|
|
11
|
+
- Creates strong differentiation against black-box assistants.
|
|
12
|
+
|
|
13
|
+
## Validation Plan
|
|
14
|
+
1. Prototype trace UI in one workflow.
|
|
15
|
+
2. Run 10 user sessions.
|
|
16
|
+
3. Measure confidence score before/after.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# 📝 Quick Capture Example: Viral Positioning Spark
|
|
2
|
+
|
|
3
|
+
## Raw Input
|
|
4
|
+
- User quote from onboarding call: "I don't need another notes app. I need a system that thinks with me."
|
|
5
|
+
- Candidate promise: "From capture to action in one flow."
|
|
6
|
+
- Hook idea: "MindOS is your second brain with execution memory."
|
|
7
|
+
|
|
8
|
+
## Why This Matters
|
|
9
|
+
- This line can become the homepage hero message.
|
|
10
|
+
- It directly answers category fatigue and highlights differentiation.
|
|
11
|
+
|
|
12
|
+
## Next Routing
|
|
13
|
+
- Move positioning statement to `Ideas/`.
|
|
14
|
+
- Move user quote + source link to `Meetings/` evidence note.
|
package/templates/en//360/237/223/235 Notes/Meetings//360/237/247/252_example_meeting_note.md"
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# 📌 Meeting Note Example: GTM Alignment
|
|
2
|
+
|
|
3
|
+
## Date
|
|
4
|
+
- 2026-03-10
|
|
5
|
+
|
|
6
|
+
## Participants
|
|
7
|
+
- Founder, Product, Growth, Content
|
|
8
|
+
|
|
9
|
+
## Key Decisions
|
|
10
|
+
- Positioning: "MindOS turns scattered knowledge into reliable execution."
|
|
11
|
+
- Primary audience: builders and creators overwhelmed by tool fragmentation.
|
|
12
|
+
- Launch narrative: less setup friction, more weekly momentum.
|
|
13
|
+
|
|
14
|
+
## Action Items
|
|
15
|
+
- Growth: draft 3 landing page variants by Friday.
|
|
16
|
+
- Product: prepare 60-second onboarding demo.
|
|
17
|
+
- Content: publish case-based thread on consistency gains.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Notes
|
|
2
|
+
|
|
3
|
+
Quick capture and lightweight notes.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
📝 Notes/
|
|
9
|
+
├── README.md
|
|
10
|
+
├── INSTRUCTION.md
|
|
11
|
+
├── Inbox/
|
|
12
|
+
├── Waiting/
|
|
13
|
+
├── Meetings/
|
|
14
|
+
└── Ideas/
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
- `Inbox/`: quick capture for unprocessed notes.
|
|
20
|
+
- `Waiting/`: items blocked by external dependency or feedback.
|
|
21
|
+
- `Meetings/`: meeting notes, decisions, and action items.
|
|
22
|
+
- `Ideas/`: idea pool for product concepts, topics, and experiments.
|
|
23
|
+
- Move stable knowledge into `👤 Profile/`, `🔄 Workflows/`, `🚀 Projects/`, or `📚 Resources/` regularly.
|
|
24
|
+
- Follow execution and sync rules in `INSTRUCTION.md`.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# ⏳ Blocked Item Example: Launch Asset Dependency
|
|
2
|
+
|
|
3
|
+
## Item
|
|
4
|
+
- Marketing launch page cannot publish until new product visuals are approved.
|
|
5
|
+
|
|
6
|
+
## Owner
|
|
7
|
+
- Design lead
|
|
8
|
+
|
|
9
|
+
## Dependency
|
|
10
|
+
- Final approval from founder + legal review for testimonial usage.
|
|
11
|
+
|
|
12
|
+
## Impact If Delayed
|
|
13
|
+
- Delays Product Hunt launch window and partner newsletter slot.
|
|
14
|
+
|
|
15
|
+
## Next Follow-up
|
|
16
|
+
- 2026-03-15 10:00 AM
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# ⚙️ Configuration Update SOP Example: Zero-Repeat Setup
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
- Ensure agents can run with minimal reconfiguration across sessions.
|
|
5
|
+
|
|
6
|
+
## Steps
|
|
7
|
+
1. Update `CONFIG.json` for structured keys.
|
|
8
|
+
2. Update `CONFIG.md` for semantic intent.
|
|
9
|
+
3. Verify naming-level rules (emoji + hierarchy) remain consistent.
|
|
10
|
+
4. Run `rg` sweep for stale paths and obsolete labels.
|
|
11
|
+
5. Validate one real workflow end-to-end.
|
|
12
|
+
|
|
13
|
+
## Success Criteria
|
|
14
|
+
- New session can execute core flows without extra setup prompts.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Directory Instruction Set
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
|
|
5
|
+
- Define local execution rules for this first-level directory.
|
|
6
|
+
|
|
7
|
+
## Local Rules
|
|
8
|
+
|
|
9
|
+
- Read root `INSTRUCTION.md` first.
|
|
10
|
+
- Then read this directory `README.md` for navigation.
|
|
11
|
+
- Keep edits minimal, structured, and traceable.
|
|
12
|
+
|
|
13
|
+
## Execution Order
|
|
14
|
+
|
|
15
|
+
1. Root `INSTRUCTION.md`
|
|
16
|
+
2. This directory `INSTRUCTION.md`
|
|
17
|
+
3. This directory `README.md` and target files
|
|
18
|
+
|
|
19
|
+
## Boundary
|
|
20
|
+
|
|
21
|
+
- Root rules win on conflict.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Information
|
|
2
|
+
|
|
3
|
+
SOP folder for information collection and knowledge flow.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
Information/
|
|
9
|
+
└── <SOP file>.md
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
- Store search, triage, extraction, and sync procedures.
|
|
15
|
+
- Define source criteria and archive targets when possible.
|
|
16
|
+
- Follow parent rules in `🔄 Workflows/INSTRUCTION.md`.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# 🔎 Information Capture SOP Example: Signal-First Intake
|
|
2
|
+
|
|
3
|
+
## Input
|
|
4
|
+
- User interviews, social comments, competitor launches, support tickets.
|
|
5
|
+
|
|
6
|
+
## Steps
|
|
7
|
+
1. Capture source, date, and quote.
|
|
8
|
+
2. Tag by theme: activation, retention, trust, differentiation.
|
|
9
|
+
3. Extract one actionable product or messaging implication.
|
|
10
|
+
4. Route to `Projects/` if execution is needed this week.
|
|
11
|
+
|
|
12
|
+
## Outcome
|
|
13
|
+
- Insight backlog that directly feeds roadmap and marketing copy.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Media
|
|
2
|
+
|
|
3
|
+
SOP folder for media and content workflows.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
Media/
|
|
9
|
+
└── <SOP file>.md
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
- Store content production, publishing, and review SOPs.
|
|
15
|
+
- Keep procedures concise and executable.
|
|
16
|
+
- Follow parent rules in `🔄 Workflows/INSTRUCTION.md`.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# 📰 Content Publish SOP Example: Promise-to-Proof Distribution
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
- Turn product claims into believable public proof.
|
|
5
|
+
|
|
6
|
+
## Pipeline
|
|
7
|
+
1. Pick one claim (for example: faster weekly execution).
|
|
8
|
+
2. Attach one concrete case or metric.
|
|
9
|
+
3. Publish in 3 formats: short post, visual card, long-form note.
|
|
10
|
+
4. Track saves, replies, and demo requests.
|
|
11
|
+
|
|
12
|
+
## Quality Gate
|
|
13
|
+
- Every post must include: problem, mechanism, evidence, next action.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Workflows
|
|
2
|
+
|
|
3
|
+
Overview and usage guide for workflow SOPs.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
🔄 Workflows/
|
|
9
|
+
├── README.md
|
|
10
|
+
├── INSTRUCTION.md
|
|
11
|
+
├── Research/
|
|
12
|
+
├── Startup/
|
|
13
|
+
├── Media/
|
|
14
|
+
├── Information/
|
|
15
|
+
└── Configurations/
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
- Pick the subdirectory by scenario.
|
|
21
|
+
- Keep SOPs executable and step-oriented.
|
|
22
|
+
- Follow execution and sync rules in `INSTRUCTION.md`.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Research
|
|
2
|
+
|
|
3
|
+
SOP folder for research workflows.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
Research/
|
|
9
|
+
└── <SOP file>.md
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
- Store retrievable and executable research SOPs.
|
|
15
|
+
- Keep steps explicit with clear inputs and outputs.
|
|
16
|
+
- Follow parent rules in `🔄 Workflows/INSTRUCTION.md`.
|
package/templates/en//360/237/224/204 Workflows/Research//360/237/247/252_example_lit_review_sop.md"
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# 🔬 Literature Review SOP Example: Proof-Backed Product Claims
|
|
2
|
+
|
|
3
|
+
## Goal
|
|
4
|
+
- Strengthen product messaging with credible research evidence.
|
|
5
|
+
|
|
6
|
+
## Steps
|
|
7
|
+
1. Search 10 recent papers on memory systems and agent reliability.
|
|
8
|
+
2. Extract 3 claims that map to MindOS value propositions.
|
|
9
|
+
3. Convert each claim into one user-facing sentence + citation note.
|
|
10
|
+
4. Store reusable snippets for landing page and investor updates.
|
|
11
|
+
|
|
12
|
+
## Output Template
|
|
13
|
+
- Claim:
|
|
14
|
+
- Evidence source:
|
|
15
|
+
- Product implication:
|
|
16
|
+
- Safe marketing phrasing:
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# 🚀 Weekly Founder Ops Example: Momentum System
|
|
2
|
+
|
|
3
|
+
## Objective
|
|
4
|
+
- Keep product, growth, and narrative execution aligned every week.
|
|
5
|
+
|
|
6
|
+
## Monday Setup
|
|
7
|
+
1. Define one growth metric and one product metric.
|
|
8
|
+
2. Pick top 3 bets (ship, distribute, learn).
|
|
9
|
+
3. Set one public proof artifact (demo, post, case).
|
|
10
|
+
|
|
11
|
+
## Midweek Check
|
|
12
|
+
1. Review blockers and decision latency.
|
|
13
|
+
2. Cut low-leverage work.
|
|
14
|
+
3. Re-allocate time to highest learning loop.
|
|
15
|
+
|
|
16
|
+
## Friday Review
|
|
17
|
+
1. Publish weekly build log.
|
|
18
|
+
2. Summarize wins, misses, and key evidence.
|
|
19
|
+
3. Convert insights into next-week backlog.
|
|
20
|
+
|
|
21
|
+
## Marketing Output
|
|
22
|
+
- One narrative asset per week to show compounding progress.
|
package/templates/en//360/237/224/227 Connections/Classmates//360/237/247/252_example_leo_chen.md"
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Leo Chen
|
|
2
|
+
|
|
3
|
+
## Relationship
|
|
4
|
+
- Graduate classmate
|
|
5
|
+
|
|
6
|
+
## Current Role
|
|
7
|
+
- ML Engineer
|
|
8
|
+
|
|
9
|
+
## MindOS Relevance
|
|
10
|
+
- Can evaluate technical credibility of agent architecture claims.
|
|
11
|
+
|
|
12
|
+
## Collaboration Potential
|
|
13
|
+
- Review technical positioning before public launch.
|
|
14
|
+
|
|
15
|
+
## Next Action
|
|
16
|
+
- Schedule a 30-minute architecture + messaging review.
|
package/templates/en//360/237/224/227 Connections/Colleagues//360/237/247/252_example_ethan_zhao.md"
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Ethan Zhao
|
|
2
|
+
|
|
3
|
+
## Relationship
|
|
4
|
+
- Former colleague
|
|
5
|
+
|
|
6
|
+
## Current Role
|
|
7
|
+
- Engineering Lead
|
|
8
|
+
|
|
9
|
+
## MindOS Relevance
|
|
10
|
+
- Experienced in scaling developer workflows and team adoption.
|
|
11
|
+
|
|
12
|
+
## Collaboration Potential
|
|
13
|
+
- Can advise adoption strategy for power users and teams.
|
|
14
|
+
|
|
15
|
+
## Next Action
|
|
16
|
+
- Ask for rollout playbook feedback (pilot -> expansion).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Name,Category,Relationship,CurrentRole,Location,Status,LastInteraction,MdPath,UpdatedAt
|
|
2
|
+
James Wang,Family,Father,Retired Teacher,Hangzhou,active,2026-03-01,Family/🧪_example_james_wang.md,2026-03-10
|
|
3
|
+
Lily Lin,Friends,College Friend,Product Manager,Shanghai,active,2026-03-05,Friends/🧪_example_lily_lin.md,2026-03-10
|
|
4
|
+
Leo Chen,Classmates,Graduate School Classmate,ML Engineer,Beijing,warm,2026-02-20,Classmates/🧪_example_leo_chen.md,2026-03-10
|
|
5
|
+
Ethan Zhao,Colleagues,Former Colleague,Engineering Lead,Shenzhen,active,2026-03-08,Colleagues/🧪_example_ethan_zhao.md,2026-03-10
|
package/templates/en//360/237/224/227 Connections/Family//360/237/247/252_example_james_wang.md"
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# James Wang
|
|
2
|
+
|
|
3
|
+
## Relationship
|
|
4
|
+
- Father
|
|
5
|
+
|
|
6
|
+
## Context
|
|
7
|
+
- Former teacher, values long-term discipline and clear routines.
|
|
8
|
+
|
|
9
|
+
## MindOS Relevance
|
|
10
|
+
- Useful sounding board for habit consistency and weekly planning cadence.
|
|
11
|
+
|
|
12
|
+
## Collaboration Potential
|
|
13
|
+
- Can review personal execution rhythm and suggest simplification.
|
|
14
|
+
|
|
15
|
+
## Next Action
|
|
16
|
+
- Share monthly reflection summary and ask for one improvement suggestion.
|