@deltafleet/codex-goalkeeper 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/CHANGELOG.md +15 -0
- package/CODE_OF_CONDUCT.md +13 -0
- package/CONTRIBUTING.md +57 -0
- package/LICENSE +22 -0
- package/README.ja.md +197 -0
- package/README.ko.md +197 -0
- package/README.md +223 -0
- package/README.zh-CN.md +197 -0
- package/SECURITY.md +32 -0
- package/SKILL.md +164 -0
- package/agents/openai.yaml +5 -0
- package/docs/RELEASE.md +77 -0
- package/docs/ROADMAP.md +77 -0
- package/examples/goalkeeper-session/checkpoint.md +58 -0
- package/examples/goalkeeper-session/context-pack.md +39 -0
- package/examples/goalkeeper-session/events.jsonl +5 -0
- package/package.json +60 -0
- package/src/references/event-schema.md +63 -0
- package/src/references/guardrail.md +62 -0
- package/src/references/workflow.md +187 -0
- package/src/scripts/goalkeeper-append-event.mjs +263 -0
- package/src/scripts/goalkeeper-doctor.mjs +476 -0
- package/src/scripts/goalkeeper-init.mjs +271 -0
- package/src/scripts/goalkeeper-turn-start.mjs +166 -0
- package/src/scripts/goalkeeper-update-checkpoint.mjs +339 -0
- package/src/scripts/test-goalkeeper-update-checkpoint.mjs +236 -0
- package/src/templates/AGENTS.goalkeeper.md +48 -0
- package/src/templates/active-session +1 -0
- package/src/templates/checkpoint.md +54 -0
- package/src/templates/context-pack.md +45 -0
- package/src/templates/event.jsonl +3 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Goalkeeper Context Pack
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Preserve medium-density context that is too detailed for `checkpoint.md` but too important to leave only in compacted conversation history.
|
|
6
|
+
|
|
7
|
+
Read this when:
|
|
8
|
+
|
|
9
|
+
- `checkpoint.md` is too thin to explain why the current direction exists
|
|
10
|
+
- a long-running goal resumes after many turns or a long gap
|
|
11
|
+
- the agent is about to change direction and needs the decision chain
|
|
12
|
+
|
|
13
|
+
## Active Goal
|
|
14
|
+
|
|
15
|
+
-
|
|
16
|
+
|
|
17
|
+
## Durable Constraints
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Working Model
|
|
22
|
+
|
|
23
|
+
-
|
|
24
|
+
|
|
25
|
+
## Decision Chain
|
|
26
|
+
|
|
27
|
+
-
|
|
28
|
+
|
|
29
|
+
## Rejected Alternatives
|
|
30
|
+
|
|
31
|
+
-
|
|
32
|
+
|
|
33
|
+
## Open Threads
|
|
34
|
+
|
|
35
|
+
-
|
|
36
|
+
|
|
37
|
+
## Evidence Index
|
|
38
|
+
|
|
39
|
+
- Atomic events: `.goalkeeper/sessions/<goal-session-id>/events.jsonl`
|
|
40
|
+
|
|
41
|
+
## Maintenance Notes
|
|
42
|
+
|
|
43
|
+
- Keep `checkpoint.md` short enough to read every turn.
|
|
44
|
+
- Use this file for the larger explanation that helps reconstruct pre-compaction reasoning.
|
|
45
|
+
- Do not paste raw transcripts or long command output here.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"ts":"2026-05-17T00:00:00Z","type":"goal","text":"Define the active long-running Codex goal.","status":"open"}
|
|
2
|
+
{"ts":"2026-05-17T00:00:00Z","type":"user_constraint","text":"Record durable user constraints that must survive compaction."}
|
|
3
|
+
{"ts":"2026-05-17T00:00:00Z","type":"decision","text":"Record the current direction and why it was chosen."}
|