You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,17 @@
7
7
-`LLM.md` as a compact agent-readable guide to the repo.
8
8
- README front-door cleanup, including the routing table and compatibility/control matrix.
9
9
- A clearer repo-specific `AGENTS.md`.
10
+
- A portable output contract inside every installed skill.
11
+
- Validation that rejects skill links escaping the installed skill folder.
10
12
11
13
### Changed
12
14
13
15
- README sections were consolidated for faster scanning.
16
+
- The quickstart now asks users to choose one install target instead of running both installers.
17
+
- Downstream skills now accept fact ledgers or conversation-state records explicitly and preserve their source classifications.
18
+
- Optional template references no longer use repository-relative paths that break after installation.
14
19
15
-
### Notes
20
+
### Fixed
16
21
17
-
- This branch is documentation and productization only; skill behavior is unchanged.
22
+
- Installed skills no longer depend on `../../references` or `../../templates` paths that are absent from the installed layout.
23
+
- Assumptions, open questions, proposed actions, and stakeholder positions may not be promoted into facts, decisions, commitments, owners, or deadlines without new source support.
Copy file name to clipboardExpand all lines: README.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ It is not a deterministic workflow engine, ticketing system, MCP server, or proj
27
27
28
28
The skills provide reusable instruction contracts and examples. They help an assistant preserve uncertainty, identify asks, surface owners, draft replies, and avoid unsafe action.
29
29
30
+
Each installed `SKILL.md` is self-contained: the critical uncertainty, handoff, and mutation rules travel with the skill folder rather than depending on repository-only links.
31
+
30
32
Slack threads, email chains, doc comments, tickets, and transcripts can all carry the same source state as a live meeting. Treat them as async collaboration: extract facts first, then move to the next clear action.
31
33
32
34
For machine-validated workflows, use the optional schemas and examples as a stricter handoff layer.
@@ -35,10 +37,24 @@ For machine-validated workflows, use the optional schemas and examples as a stri
@@ -115,9 +131,9 @@ Choose the mode that gives you the right control.
115
131
| Mode | What it uses | Default behavior | Validation confidence | Caveat |
116
132
| --- | --- | --- | --- | --- |
117
133
| Pasted-context mode | Pasted notes, transcripts, docs, or thread text | Read and draft from pasted source only | High | This is the primary validated usage pattern. |
118
-
| Claude/Cowork-style skills | Local `SKILL.md` files plus pasted context | Read and draft through the hosted skill pack | Medium | Validated mainly when used with pasted context; host UI behavior is outside this repo. |
119
-
| Codex install path |`install.sh` or copied skill folders | Places the same skill pack in Codex-friendly paths | Medium | Install layout is validated; host features are not. |
120
-
| Other assistants / manual prompt reuse | Copied `SKILL.md` text or pasted prompts| Same output contract when the host follows it | Low | Compatibility target, not a tested integration. |
134
+
| Claude/Cowork-style skills | Local self-contained `SKILL.md` files plus pasted context | Read and draft through the hosted skill pack | Medium | Validated mainly when used with pasted context; host UI behavior is outside this repo. |
135
+
| Codex install path |`install.sh` or copied skill folders | Places the same self-contained skill pack in Codex-friendly paths | Medium | Install layout is validated; host features are not. |
136
+
| Other assistants / manual prompt reuse | Copied `SKILL.md` text or skill folders| Same output contract when the host follows it | Low | Compatibility target, not a tested integration. |
121
137
| Connected-context mode | Approved tools the user explicitly authorizes | Reads only approved tools | Low | This repo does not grant connector access. |
122
138
| Action mode | Host tool invocation plus user approval | Mutates systems only when explicitly asked | Low | This repo provides guardrails, not mutation rights. |
123
139
@@ -133,7 +149,7 @@ Connector and action-mode behavior depends on the host assistant and the tools t
133
149
134
150
For why MCP stays out of scope for now, see [integration roadmap](docs/integration-roadmap.md).
135
151
136
-
Shared guidance for mixed-source inputs lives in [source-packet.md](references/source-packet.md).
152
+
Shared authoring guidance for mixed-source inputs lives in [source-packet.md](references/source-packet.md). The installed skills carry their critical output contract inline.
0 commit comments