djournal 0.1.0 → 0.2.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/.agents/adapters/shared/journal-hook.js +94 -11
- package/.agents/rules/AUTOMATION.md +2 -2
- package/.agents/rules/FEAT.md +9 -9
- package/.agents/rules/METADATA.md +2 -1
- package/.agents/rules/STATE.md +18 -5
- package/.agents/skills/audit/SKILL.md +4 -2
- package/.agents/skills/init-work/SKILL.md +6 -5
- package/.agents/skills/journal/SKILL.md +3 -2
- package/.agents/skills/plan/SKILL.md +3 -2
- package/.agents/skills/recall/SKILL.md +5 -3
- package/.agents/skills/resume/SKILL.md +2 -1
- package/.agents/skills/switch/SKILL.md +6 -5
- package/.claude/settings.json +4 -2
- package/AGENTS.md +4 -2
- package/README.md +155 -59
- package/bin/journal.js +20 -1
- package/docs/architecture.md +175 -0
- package/docs/djournal-in-practice.md +246 -0
- package/docs/installation.md +152 -0
- package/docs/remote-sync.md +144 -0
- package/docs/uninstalling.md +78 -0
- package/docs/visibility-and-sharing.md +88 -0
- package/lib/installer/index.js +458 -13
- package/lib/installer/merge.js +74 -0
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "djournal",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Durable project memory for coding agents, stored as linked Markdown",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"CLAUDE.md",
|
|
16
16
|
"LICENSE",
|
|
17
17
|
"bin/",
|
|
18
|
+
"docs/",
|
|
18
19
|
"install.sh",
|
|
19
20
|
"lib/",
|
|
20
21
|
"spec.md"
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
"scripts": {
|
|
23
24
|
"check:package": "node scripts/check-package.cjs",
|
|
24
25
|
"check:pr-title": "node scripts/check-pr-title.js",
|
|
26
|
+
"link:global": "npm link",
|
|
25
27
|
"release": "semantic-release",
|
|
26
28
|
"test": "node tests/journal-hook.test.js && node tests/installer/installer.test.js && node tests/release-policy.test.js && npm run check:package",
|
|
27
29
|
"prepublishOnly": "npm test"
|