Add LITE-START.md — vault-only mode for any AI tool#1
Conversation
Inspired by cwlin0131/Vault-for-Founders, this adds a low-barrier entry point that works with any AI (not just Claude Code) and requires no terminal or coding experience. Changes: - Add LITE-START.md: vault + persona + memory setup in 3 steps - Update README.md: offer Lite vs Full paths upfront - Cross-reference Vault-for-Founders and Muse Crystal Seed - Separate requirements for Lite Mode vs Full System LITE-START.md includes: - Tool-agnostic AI preamble (works with Claude, GPT, Cursor, etc.) - Two-layer memory pattern baked in from the start - Instructions for multiple AI tools (Cowork, Code, Cursor, ChatGPT) - Clear graduation path to QUICK-START.md Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
There was a problem hiding this comment.
Code Review
This pull request introduces LITE-START.md, a guide for setting up a portable AI knowledge vault for non-technical users, and updates the README.md to include this Lite Mode option. The review feedback identifies a contradiction regarding terminal usage, suggests using POSIX-compliant shell commands for directory creation, and corrects the configuration file requirement for Claude Code to ensure proper instruction loading.
| @@ -0,0 +1,263 @@ | |||
| # Lite Start — Vault + Memory in 10 Minutes | |||
|
|
|||
| > **No terminal, no automation, no coding required.** | |||
There was a problem hiding this comment.
There is a contradiction between the claim "No terminal... required" and the instructions in Step 1 (lines 59-62), which provide a bash command for directory creation. For users using AI tools without terminal execution capabilities (like standard web interfaces), this step will fail unless they create the directories manually. Consider adding a note that directories can be created manually via a file explorer if the AI cannot execute commands.
|
|
||
| ```bash | ||
| VAULT="$HOME/Vault" # or user's choice | ||
| mkdir -p "$VAULT"/{identity,context,memory/decisions,projects} |
There was a problem hiding this comment.
The use of brace expansion ({...}) in the mkdir command is a non-POSIX feature specific to shells like bash and zsh. If the AI assistant executes this in a basic sh environment, it will create a single directory with a literal name containing the braces and commas. Using explicit paths ensures compatibility across all shell environments.
| mkdir -p "$VAULT"/{identity,context,memory/decisions,projects} | |
| mkdir -p "$VAULT/identity" "$VAULT/context" "$VAULT/memory/decisions" "$VAULT/projects" |
| ``` | ||
|
|
||
| ### With Claude Code | ||
| 1. Create a CLAUDE.md in your vault (or use the existing README.md) |
There was a problem hiding this comment.
Claude Code specifically looks for a file named CLAUDE.md to load project-specific instructions and rules. It does not automatically treat README.md as a system instruction file. Suggesting README.md as an alternative for this purpose may result in the AI not following the intended persona and memory rules automatically.
| 1. Create a CLAUDE.md in your vault (or use the existing README.md) | |
| 1. Create a CLAUDE.md in your vault |
Summary
Adds a low-barrier entry point for non-technical users, inspired by Vault for Founders.
Why
The current QUICK-START.md requires macOS + Claude Code + Node.js and takes 30-90 minutes across 8 phases. Many potential users want the memory benefits without the full automation stack. CW Lin's Vault-for-Founders showed that a vault-only approach resonates with non-technical founders.
What LITE-START.md includes
Relationship to Vault-for-Founders
We also submitted a PR to Vault-for-Founders suggesting a memory scaling guide based on our experience. The two projects complement each other:
Test plan
🤖 Generated with Claude Code