waypoint-codex 0.9.4 → 0.9.5
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 +1 -1
- package/package.json +1 -1
- package/templates/.gitignore.snippet +15 -2
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ The philosophy is simple:
|
|
|
37
37
|
- more markdown
|
|
38
38
|
- better continuity for the next agent
|
|
39
39
|
|
|
40
|
-
By default, Waypoint appends a `.gitignore` snippet that ignores the Waypoint-created
|
|
40
|
+
By default, Waypoint appends a `.gitignore` snippet that ignores the exact Waypoint-created skill directories and reviewer-agent config files, plus everything under `.waypoint/` except `.waypoint/docs/`, while still ignoring the scaffolded `.waypoint/docs/README.md` and `.waypoint/docs/code-guide.md` assets. User-authored durable docs stay trackable; workspace, context, indexes, and other operational state remain local.
|
|
41
41
|
|
|
42
42
|
## Best fit
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
# Waypoint state
|
|
2
2
|
.codex/config.toml
|
|
3
|
-
.codex/agents/
|
|
4
|
-
.agents/
|
|
3
|
+
.codex/agents/code-reviewer.toml
|
|
4
|
+
.codex/agents/code-health-reviewer.toml
|
|
5
|
+
.codex/agents/plan-reviewer.toml
|
|
6
|
+
.agents/skills/planning/
|
|
7
|
+
.agents/skills/work-tracker/
|
|
8
|
+
.agents/skills/docs-sync/
|
|
9
|
+
.agents/skills/code-guide-audit/
|
|
10
|
+
.agents/skills/break-it-qa/
|
|
11
|
+
.agents/skills/frontend-context-interview/
|
|
12
|
+
.agents/skills/backend-context-interview/
|
|
13
|
+
.agents/skills/frontend-ship-audit/
|
|
14
|
+
.agents/skills/backend-ship-audit/
|
|
15
|
+
.agents/skills/workspace-compress/
|
|
16
|
+
.agents/skills/pre-pr-hygiene/
|
|
17
|
+
.agents/skills/pr-review/
|
|
5
18
|
.waypoint/*
|
|
6
19
|
!.waypoint/docs/
|
|
7
20
|
!.waypoint/docs/**
|