Init Project Light
Lightweight project bootstrapper for small projects that do not need a full research-project scaffold.
When to Use
- Small document collections (proposals, applications, meeting notes)
- One-off or short-lived projects
- Projects without a code pipeline or Overleaf link
- When the user says "set up something light", "quick init", "organise this folder"
- Any project that does not warrant the installation's full research-project initializer
When NOT to Use — Escalate to a full research-project initializer
- Research papers targeting a journal or conference
- Projects with code, data, or computational pipelines
- Anything that needs Overleaf, git, or a vault atlas entry
Phase 1: Scan
Read everything already in the directory before asking questions.
- List all files and folders (excluding
.claude/, .DS_Store)
- Read text files (
.md, .tex, .bib, .txt) to understand content — respect file size (skip files > 500 lines, note them)
- Build a mental model: what is this project, what's the main output, who's involved?
Goal: Minimise interview questions by inferring answers from existing files.
Phase 2: Interview (2-3 questions max)
Use the available structured-question mechanism. Only ask what you couldn't infer from Phase 1.
Pick from these (skip any you can already answer):
- What is this project? — one sentence (e.g., "PhD research proposal for [University]")
- What's the main output? — document, application, collection of notes, etc.
- Anyone else involved? — names and roles if relevant
If Phase 1 gave you enough, confirm your understanding instead of asking:
"From the files, this looks like [X]. The main output is [Y]. Correct?"
Phase 3: Create CLAUDE.md
Follow the lean-guidance-files rule. Include only:
- Project overview — 2-3 sentences from interview/scan
- People — if collaborators/supervisors exist
- Directory structure — compact tree of what exists
- Conventions — only if detectable (e.g., LaTeX compilation, bibliography style)
- Key context — anything a future session needs to know immediately
Do NOT include:
- Detailed literature notes or reference lists
- Action items or timelines (those go to vault)
- Anything that duplicates global rules
Phase 4: Organise (suggest, don't force)
Based on what's in the directory, suggest lightweight organisation. Present options and wait for approval.
Standard suggestions
| Folder |
When to suggest |
to-sort/ |
Multiple unsorted documents exist |
docs/ |
Reference materials, guidelines, or background reading present |
archive/ |
Old versions or abandoned drafts detected |
Rules
- Never create more than 2-3 folders — this is a light project
- Never move files without explicit approval
- If the existing structure already makes sense, say so and skip this phase
- If there's a
.claude/settings.local.json, leave it. If not, create one with standard permissions.
Standard permissions (.claude/settings.local.json)
{
"permissions": {
"allow": [
"Bash(latexmk *)",
"Bash(ls:*)",
"Bash(mkdir:*)",
"Bash(tree:*)",
"Edit",
"Glob",
"Grep",
"Read",
"Write"
],
"deny": []
}
}
Only create if missing. Never overwrite existing permissions.
Phase 5: Confirmation
Short report:
Set up lightweight project: <name>
Created:
- CLAUDE.md
- [any folders created]
- [.claude/settings.local.json if created]
Skipped (use an installed full research-project initializer if needed later):
- Git, Overleaf, vault atlas, code scaffold
Cross-References
| Skill |
Relationship |
| Installed full research-project initializer |
Escalate to this for full research projects |
update-project-doc |
Run later to refresh CLAUDE.md if the project grows |
1---2name: init-project-light3description: Bootstrap a lightweight project with minimal guidance, context, and repository structure. Use when a small non-research project needs durable AI collaboration without the full research or course scaffold. Not for formal research projects; use $init-project-research.4---56# Init Project Light78> Lightweight project bootstrapper for small projects that do not need a full research-project scaffold.910## When to Use1112- Small document collections (proposals, applications, meeting notes)13- One-off or short-lived projects14- Projects without a code pipeline or Overleaf link15- When the user says "set up something light", "quick init", "organise this folder"16- Any project that does not warrant the installation's full research-project initializer1718## When NOT to Use — Escalate to a full research-project initializer1920- Research papers targeting a journal or conference21- Projects with code, data, or computational pipelines22- Anything that needs Overleaf, git, or a vault atlas entry2324---2526## Phase 1: Scan2728Read everything already in the directory before asking questions.29301. List all files and folders (excluding `.claude/`, `.DS_Store`)312. Read text files (`.md`, `.tex`, `.bib`, `.txt`) to understand content — respect file size (skip files > 500 lines, note them)323. Build a mental model: what is this project, what's the main output, who's involved?3334**Goal:** Minimise interview questions by inferring answers from existing files.3536---3738## Phase 2: Interview (2-3 questions max)3940Use `the available structured-question mechanism`. Only ask what you couldn't infer from Phase 1.4142Pick from these (skip any you can already answer):43441. **What is this project?** — one sentence (e.g., "PhD research proposal for [University]")452. **What's the main output?** — document, application, collection of notes, etc.463. **Anyone else involved?** — names and roles if relevant4748If Phase 1 gave you enough, confirm your understanding instead of asking:49> "From the files, this looks like [X]. The main output is [Y]. Correct?"5051---5253## Phase 3: Create CLAUDE.md5455Follow the `lean-guidance-files` rule. Include only:56571. **Project overview** — 2-3 sentences from interview/scan582. **People** — if collaborators/supervisors exist593. **Directory structure** — compact tree of what exists604. **Conventions** — only if detectable (e.g., LaTeX compilation, bibliography style)615. **Key context** — anything a future session needs to know immediately6263**Do NOT include:**64- Detailed literature notes or reference lists65- Action items or timelines (those go to vault)66- Anything that duplicates global rules6768---6970## Phase 4: Organise (suggest, don't force)7172Based on what's in the directory, **suggest** lightweight organisation. Present options and wait for approval.7374### Standard suggestions7576| Folder | When to suggest |77|--------|----------------|78| `to-sort/` | Multiple unsorted documents exist |79| `docs/` | Reference materials, guidelines, or background reading present |80| `archive/` | Old versions or abandoned drafts detected |8182### Rules8384- Never create more than 2-3 folders — this is a light project85- Never move files without explicit approval86- If the existing structure already makes sense, say so and skip this phase87- If there's a `.claude/settings.local.json`, leave it. If not, create one with standard permissions.8889### Standard permissions (`.claude/settings.local.json`)9091```json92{93 "permissions": {94 "allow": [95 "Bash(latexmk *)",96 "Bash(ls:*)",97 "Bash(mkdir:*)",98 "Bash(tree:*)",99 "Edit",100 "Glob",101 "Grep",102 "Read",103 "Write"104 ],105 "deny": []106 }107}108```109110Only create if missing. Never overwrite existing permissions.111112---113114## Phase 5: Confirmation115116Short report:117118```119Set up lightweight project: <name>120121Created:122 - CLAUDE.md123 - [any folders created]124 - [.claude/settings.local.json if created]125126Skipped (use an installed full research-project initializer if needed later):127 - Git, Overleaf, vault atlas, code scaffold128```129130---131132## Cross-References133134| Skill | Relationship |135|-------|-------------|136| Installed full research-project initializer | Escalate to this for full research projects |137| `update-project-doc` | Run later to refresh CLAUDE.md if the project grows |