waypoint-codex 0.12.0 → 0.12.2
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/dist/src/core.js
CHANGED
|
@@ -38,10 +38,19 @@ const LEGACY_WAYPOINT_GITIGNORE_RULES = new Set([
|
|
|
38
38
|
".agents/skills/workspace-compress/",
|
|
39
39
|
".agents/skills/pre-pr-hygiene/",
|
|
40
40
|
".agents/skills/pr-review/",
|
|
41
|
+
".waypoint/config.toml",
|
|
42
|
+
".waypoint/MEMORY.md",
|
|
43
|
+
".waypoint/README.md",
|
|
44
|
+
".waypoint/SOUL.md",
|
|
45
|
+
".waypoint/WORKSPACE.md",
|
|
46
|
+
".waypoint/agent-operating-manual.md",
|
|
41
47
|
".waypoint/",
|
|
42
48
|
".waypoint/DOCS_INDEX.md",
|
|
49
|
+
".waypoint/TRACKS_INDEX.md",
|
|
43
50
|
".waypoint/state/",
|
|
44
51
|
".waypoint/context/",
|
|
52
|
+
".waypoint/scripts/",
|
|
53
|
+
".waypoint/track/",
|
|
45
54
|
".waypoint/*",
|
|
46
55
|
"!.waypoint/docs/",
|
|
47
56
|
"!.waypoint/docs/**",
|
package/package.json
CHANGED
|
@@ -19,10 +19,18 @@
|
|
|
19
19
|
.agents/skills/workspace-compress/
|
|
20
20
|
.agents/skills/pre-pr-hygiene/
|
|
21
21
|
.agents/skills/pr-review/
|
|
22
|
-
.waypoint
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
.waypoint/config.toml
|
|
23
|
+
.waypoint/MEMORY.md
|
|
24
|
+
.waypoint/README.md
|
|
25
|
+
.waypoint/SOUL.md
|
|
26
|
+
.waypoint/WORKSPACE.md
|
|
27
|
+
.waypoint/agent-operating-manual.md
|
|
28
|
+
.waypoint/DOCS_INDEX.md
|
|
29
|
+
.waypoint/TRACKS_INDEX.md
|
|
30
|
+
.waypoint/context/
|
|
31
|
+
.waypoint/scripts/
|
|
32
|
+
.waypoint/state/
|
|
33
|
+
.waypoint/track/
|
|
26
34
|
.waypoint/docs/README.md
|
|
27
35
|
.waypoint/docs/code-guide.md
|
|
28
36
|
# End Waypoint state
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Repo-local Waypoint configuration and project memory files.
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
- `MEMORY.md` — durable user/team preferences, collaboration context, and stable product defaults
|
|
6
6
|
- `config.toml` — Waypoint feature toggles and file locations
|
|
7
7
|
- `WORKSPACE.md` — live operational state; new or materially revised entries in multi-topic sections are timestamped
|
|
8
8
|
- `DOCS_INDEX.md` — generated docs routing map
|