@mangold/rvault 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/LICENSE +21 -0
- package/README.md +83 -0
- package/dist/commands/doctor.d.ts +7 -0
- package/dist/commands/doctor.d.ts.map +1 -0
- package/dist/commands/doctor.js +315 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/init.d.ts +8 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +181 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/run.d.ts +9 -0
- package/dist/commands/run.d.ts.map +1 -0
- package/dist/commands/run.js +117 -0
- package/dist/commands/run.js.map +1 -0
- package/dist/commands/status.d.ts +6 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +147 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/upgrade.d.ts +9 -0
- package/dist/commands/upgrade.d.ts.map +1 -0
- package/dist/commands/upgrade.js +409 -0
- package/dist/commands/upgrade.js.map +1 -0
- package/dist/commands/version.d.ts +7 -0
- package/dist/commands/version.d.ts.map +1 -0
- package/dist/commands/version.js +57 -0
- package/dist/commands/version.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +103 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/checksum.d.ts +3 -0
- package/dist/lib/checksum.d.ts.map +1 -0
- package/dist/lib/checksum.js +11 -0
- package/dist/lib/checksum.js.map +1 -0
- package/dist/lib/claude.d.ts +22 -0
- package/dist/lib/claude.d.ts.map +1 -0
- package/dist/lib/claude.js +50 -0
- package/dist/lib/claude.js.map +1 -0
- package/dist/lib/detect.d.ts +3 -0
- package/dist/lib/detect.d.ts.map +1 -0
- package/dist/lib/detect.js +28 -0
- package/dist/lib/detect.js.map +1 -0
- package/dist/lib/files.d.ts +28 -0
- package/dist/lib/files.d.ts.map +1 -0
- package/dist/lib/files.js +92 -0
- package/dist/lib/files.js.map +1 -0
- package/dist/lib/manifest-parser.d.ts +6 -0
- package/dist/lib/manifest-parser.d.ts.map +1 -0
- package/dist/lib/manifest-parser.js +108 -0
- package/dist/lib/manifest-parser.js.map +1 -0
- package/dist/lib/merge-prompt.d.ts +30 -0
- package/dist/lib/merge-prompt.d.ts.map +1 -0
- package/dist/lib/merge-prompt.js +113 -0
- package/dist/lib/merge-prompt.js.map +1 -0
- package/dist/lib/registry.d.ts +6 -0
- package/dist/lib/registry.d.ts.map +1 -0
- package/dist/lib/registry.js +19 -0
- package/dist/lib/registry.js.map +1 -0
- package/dist/lib/template.d.ts +7 -0
- package/dist/lib/template.d.ts.map +1 -0
- package/dist/lib/template.js +22 -0
- package/dist/lib/template.js.map +1 -0
- package/dist/lib/version-file.d.ts +5 -0
- package/dist/lib/version-file.d.ts.map +1 -0
- package/dist/lib/version-file.js +21 -0
- package/dist/lib/version-file.js.map +1 -0
- package/dist/types.d.ts +54 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +44 -0
- package/templates/.claude/agents/vault-adversarial-auditor.md +99 -0
- package/templates/.claude/agents/vault-constitutional-reviewer.md +59 -0
- package/templates/.claude/agents/vault-contradiction-analyst.md +86 -0
- package/templates/.claude/agents/vault-critic.md +73 -0
- package/templates/.claude/agents/vault-ideator.md +59 -0
- package/templates/.claude/agents/vault-meta-reviewer.md +90 -0
- package/templates/.claude/agents/vault-researcher.md +85 -0
- package/templates/.claude/agents/vault-synthesizer.md +63 -0
- package/templates/.claude/skills/vault/SKILL.md +96 -0
- package/templates/.claude/skills/vault-audit/SKILL.md +21 -0
- package/templates/.claude/skills/vault-decide/SKILL.md +29 -0
- package/templates/.claude/skills/vault-fieldnote/SKILL.md +27 -0
- package/templates/.claude/skills/vault-ideas/SKILL.md +24 -0
- package/templates/.claude/skills/vault-queue/SKILL.md +28 -0
- package/templates/.claude/skills/vault-review/SKILL.md +35 -0
- package/templates/.claude/skills/vault-status/SKILL.md +23 -0
- package/templates/BOOTSTRAP.md +77 -0
- package/templates/infrastructure.json +38 -0
- package/templates/research-vault/VAULT_CONSTITUTION.md +307 -0
- package/templates/research-vault/VAULT_PROTOCOL.md +432 -0
- package/templates/research-vault/archive/.gitkeep +0 -0
- package/templates/research-vault/decision-briefs/.gitkeep +0 -0
- package/templates/research-vault/distilled/.gitkeep +0 -0
- package/templates/research-vault/governance/DESIGN_ORIGINS.md +214 -0
- package/templates/research-vault/ideas/.gitkeep +0 -0
- package/templates/research-vault/inbox/.gitkeep +0 -0
- package/templates/research-vault/integrated/.gitkeep +0 -0
- package/templates/research-vault/logs/.gitkeep +0 -0
- package/templates/research-vault/project-context/.gitkeep +0 -0
- package/templates/research-vault/project-context/FIELD_NOTES.md +28 -0
- package/templates/research-vault/project-context/REFERENCES.md +48 -0
- package/templates/research-vault/research-queue/briefs/.gitkeep +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Field Notes
|
|
2
|
+
|
|
3
|
+
Development outcomes, test results, and implementation learnings
|
|
4
|
+
that should inform future vault research. This file is the bridge
|
|
5
|
+
between development work and the vault's knowledge base.
|
|
6
|
+
|
|
7
|
+
The human (or their coding agent during normal development) appends
|
|
8
|
+
entries here after implementation sessions. Vault agents consume
|
|
9
|
+
these notes during their normal processes.
|
|
10
|
+
|
|
11
|
+
## Entry Format
|
|
12
|
+
|
|
13
|
+
### YYYY-MM-DD — [Short Title]
|
|
14
|
+
|
|
15
|
+
**Context**: What were you trying to do? Reference a decision brief
|
|
16
|
+
or research finding if applicable.
|
|
17
|
+
|
|
18
|
+
**What happened**: What worked, what didn't, what was surprising.
|
|
19
|
+
|
|
20
|
+
**Implications for the vault**:
|
|
21
|
+
- Claims to update (if vault knowledge was wrong or incomplete)
|
|
22
|
+
- New research questions raised
|
|
23
|
+
- Problems resolved (can be closed in PROBLEMS.md)
|
|
24
|
+
- Problems discovered (should be added to PROBLEMS.md)
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
*No entries yet.*
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Local Reference Documents
|
|
2
|
+
|
|
3
|
+
These are authoritative primary sources available on the local
|
|
4
|
+
filesystem. They take precedence over web search results for any
|
|
5
|
+
topic they cover. Researchers MUST check relevant local references
|
|
6
|
+
before or alongside web searches.
|
|
7
|
+
|
|
8
|
+
## How to use these documents
|
|
9
|
+
|
|
10
|
+
For large documents (100+ pages), do NOT attempt to read them in
|
|
11
|
+
full. Instead:
|
|
12
|
+
1. Check if an index file exists (e.g., `<short-name>-index.md`
|
|
13
|
+
in this directory) and use it to find relevant page ranges.
|
|
14
|
+
2. Use text search (grep, or read specific page ranges) to find
|
|
15
|
+
relevant sections.
|
|
16
|
+
3. Cite findings as: "[Document short name], Section X.Y, p. NNN"
|
|
17
|
+
4. Local references are higher-authority than web sources for
|
|
18
|
+
specifications, APIs, and implementation details.
|
|
19
|
+
|
|
20
|
+
## Documents
|
|
21
|
+
|
|
22
|
+
| Short Name | Path | Description | Pages | Key Topics |
|
|
23
|
+
|------------|------|-------------|-------|------------|
|
|
24
|
+
|
|
25
|
+
*No documents registered yet. Add rows as you acquire reference
|
|
26
|
+
materials for this project.*
|
|
27
|
+
|
|
28
|
+
## Quick lookup by topic
|
|
29
|
+
|
|
30
|
+
| Topic | Check first | Then |
|
|
31
|
+
|-------|------------|------|
|
|
32
|
+
|
|
33
|
+
*Populate this table as documents are added. Map commonly-researched
|
|
34
|
+
topics to the most relevant reference document so researchers can
|
|
35
|
+
find the right source quickly.*
|
|
36
|
+
|
|
37
|
+
## Adding new references
|
|
38
|
+
|
|
39
|
+
When adding reference documents:
|
|
40
|
+
- Use a short, citable name
|
|
41
|
+
- Provide the filesystem path (relative to project root)
|
|
42
|
+
- Briefly describe what the document covers
|
|
43
|
+
- Note approximate page count
|
|
44
|
+
- List key topics so researchers know when to consult it
|
|
45
|
+
- For documents over 100 pages, consider generating an index file
|
|
46
|
+
(see project-context/<short-name>-index.md pattern)
|
|
47
|
+
- Update the Quick Lookup table if the document covers a
|
|
48
|
+
commonly-researched topic
|
|
File without changes
|