@dendelion/paper-camp 0.2.1 → 0.3.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/README.md +16 -7
- package/dist/app/assets/main-8b5RQGnS.js +208 -0
- package/dist/app/assets/main-8b5RQGnS.js.map +1 -0
- package/dist/app/index.html +1 -1
- package/dist/chunks/serializer.DL7H4ZTd.js +5249 -0
- package/dist/chunks/serializer.DL7H4ZTd.js.map +1 -0
- package/dist/cli/index.js +1497 -714
- package/dist/cli/index.js.map +1 -1
- package/dist/core/frontmatter-schemas.d.ts +11 -0
- package/dist/core/frontmatter-schemas.d.ts.map +1 -0
- package/dist/core/frontmatter.test.d.ts +2 -0
- package/dist/core/frontmatter.test.d.ts.map +1 -0
- package/dist/core/idea-status.d.ts +7 -0
- package/dist/core/idea-status.d.ts.map +1 -0
- package/dist/core/index.js +48 -29
- package/dist/core/parser.d.ts +49 -4
- package/dist/core/parser.d.ts.map +1 -1
- package/dist/core/scaffold.d.ts +4 -2
- package/dist/core/scaffold.d.ts.map +1 -1
- package/dist/core/schemas.d.ts +75 -12
- package/dist/core/schemas.d.ts.map +1 -1
- package/dist/core/serializer.d.ts +52 -2
- package/dist/core/serializer.d.ts.map +1 -1
- package/dist/types/index.d.ts +22 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +32 -10
- package/dist/types/index.js.map +1 -1
- package/package.json +2 -1
- package/dist/app/assets/main-tAEncq68.js +0 -272
- package/dist/app/assets/main-tAEncq68.js.map +0 -1
- package/dist/chunks/serializer.D1Ts_p8h.js +0 -462
- package/dist/chunks/serializer.D1Ts_p8h.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Paper Camp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A local-first, AI-native project companion that lives where your work lives.
|
|
4
|
+
|
|
5
|
+
Most project management tools are built around teams, dashboards, and the assumption that your work needs to be somewhere on the internet. Paper Camp rejects that. It lives in your repository, versioned alongside your code, invisible to everything except you and your AI assistant.
|
|
6
|
+
|
|
7
|
+
The core idea is simple: every project deserves a memory. Not a kanban board, not a ticket system — a structured, honest record of where you started, where you are, and where you're going. A place where ideas don't get lost in chat history. A place your AI can read in seconds and immediately understand the current state of your intent.
|
|
8
|
+
|
|
9
|
+
## The folder is the database
|
|
10
|
+
|
|
11
|
+
A `papercamp/` directory sits at the root of your project. It contains markdown files with a defined structure — ideas, plans, progress, decisions, open questions. No external services, no sync, no accounts. Every change is a git commit. The history of your project is the history of those files.
|
|
12
|
+
|
|
13
|
+
## AI as a first-class collaborator
|
|
14
|
+
|
|
15
|
+
Paper Camp is designed around the way humans actually work with AI assistants. At the start of every session, you point your assistant to `papercamp/` and it knows everything — what was built, what was decided, what's next. No re-explaining. No lost context. The structured files are not documentation written after the fact; they are the living source of truth that both you and the AI maintain together.
|
|
4
16
|
|
|
5
17
|
## Quick Start
|
|
6
18
|
|
|
@@ -13,14 +25,11 @@ Open `http://localhost:3333` to access the dashboard.
|
|
|
13
25
|
|
|
14
26
|
## Pages
|
|
15
27
|
|
|
16
|
-
- **Plans** — Browse and manage plans from `papercamp/plans
|
|
17
|
-
- **
|
|
28
|
+
- **Plans** — Browse and manage plans from `papercamp/plans/`
|
|
29
|
+
- **Review** — Code review findings surfaced as actionable plan phases
|
|
30
|
+
- **Docs** — Decisions, open questions, progress timeline, and repo docs
|
|
18
31
|
- **Settings** — Project configuration
|
|
19
32
|
|
|
20
|
-
## How it works
|
|
21
|
-
|
|
22
|
-
Paper Camp reads and writes markdown files in a `papercamp/` directory at your project root. All data stays local — no server, no cloud.
|
|
23
|
-
|
|
24
33
|
## License
|
|
25
34
|
|
|
26
35
|
MIT
|