waypoint-codex 0.9.4 → 0.9.6
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/.agents/skills/backend-context-interview/agents/openai.yaml +4 -0
- package/templates/.agents/skills/frontend-context-interview/agents/openai.yaml +4 -0
- package/templates/.agents/skills/planning/agents/openai.yaml +4 -0
- package/templates/.agents/skills/work-tracker/agents/openai.yaml +4 -0
- 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
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Backend Context Interview"
|
|
3
|
+
short_description: "Ask only the backend context questions that materially change implementation or review decisions"
|
|
4
|
+
default_prompt: "Use this skill to inspect persisted project context, identify only the missing backend deployment or reliability facts that materially affect the work, ask a concise high-leverage interview if needed, and persist durable Backend Context into AGENTS.md."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Frontend Context Interview"
|
|
3
|
+
short_description: "Ask only the frontend context questions that materially change implementation or review decisions"
|
|
4
|
+
default_prompt: "Use this skill to inspect persisted project context, identify only the missing frontend product or deployment facts that materially affect the work, ask a concise high-leverage interview if needed, and persist durable Frontend Context into AGENTS.md."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Planning"
|
|
3
|
+
short_description: "Interview, explore, and write an implementation-ready plan into the repo"
|
|
4
|
+
default_prompt: "Use this skill to deeply explore the repository, interview for the product and architectural details that materially affect the work, and write an implementation-ready plan into .waypoint/docs/."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Work Tracker"
|
|
3
|
+
short_description: "Create or maintain a durable tracker for a large workstream"
|
|
4
|
+
default_prompt: "Use this skill to create or update a tracker under .waypoint/track/, keep WORKSPACE.md pointing to it, and move detailed execution state out of chat and into the repo."
|
|
@@ -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/**
|