a template starter repo for sveltekit projects
0

Configure Feed

Select the types of activity you want to include in your feed.

suede / .gitignore
1.2 kB 55 lines
1node_modules 2 3# Output 4.output 5.vercel 6.netlify 7.wrangler 8/.svelte-kit 9/build 10 11# OS 12.DS_Store 13Thumbs.db 14 15# Env 16.env 17.env.* 18!.env.example 19!.env.test 20 21# Vite 22vite.config.js.timestamp-* 23vite.config.ts.timestamp-* 24 25# Cloudflare / Wrangler (generated) 26worker-configuration.d.ts 27.wrangler 28 29*storybook.log 30storybook-static 31 32# Deciduous database (local). The sync/ event log is the shared record in 33# multi-user setups (.pi/skills/decision-graph/SKILL.md, "Sync") and is the 34# one thing under .deciduous/ that gets committed. 35.deciduous/* 36!.deciduous/sync/ 37 38# Deciduous exported web viewer (regenerated per machine via `deciduous sync`) 39docs/ 40 41# Per-task scratch space (blog post drafts, planning notes, anything 42# the agent wants to write without committing). The compiled form 43# (graph nodes + PR description) is what persists. Handoff is the 44# tool for resuming work across machines. 45agent-notes/ 46 47# Per-task working context (slice-briefs, kickoff follow-up notes). The 48# draft PR body carries the durable copy; the worktree copy dies with the 49# worktree (.pi/skills/slice-brief/SKILL.md, "File handling"). 50tmp/ 51 52# Harness-specific instruction files (AGENTS.md is the project instruction 53# file; other harnesses' artifacts stay local) 54CLAUDE.md 55.claude/