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: README.en.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ Core boundaries:
88
88
89
89
```text
90
90
OpenSpec = specification state machine and baseline source of truth
91
-
Aisee = planning, context, schemas, traceability, and workflow guardrails
91
+
Aisee = planning, context, schemas, source routing, and workflow guardrails
92
92
Aisee CLI = JSON context bus, not a second source of truth
93
93
Compound Engineering = optional implementation / review / test consumer
94
94
```
@@ -206,7 +206,7 @@ aisee doctor --json
206
206
207
207
When reading plugin content, the CLI checks only the Codex install location by default. For other agent runtimes, set `AISEE_AGENT_RUNTIME=claude|cursor|agents`; set it to `none` to disable installed plugin content discovery.
208
208
209
-
`aisee plugin export`, `aisee schemas install`, and `aisee knowledge scaffold` have been removed from the public CLI surface. Plugin content, schema packs, and team knowledge templates now come from the Codex marketplace plugin or external repositories; team knowledge onboarding now uses `aisee knowledge init-repo` and `aisee knowledge configure`.
209
+
Plugin content, schema packs, and team knowledge templates come from the Codex marketplace plugin or external repositories; team knowledge onboarding uses `aisee knowledge init-repo` and `aisee knowledge configure`.
210
210
211
211
The source repository also includes plugin metadata for multiple agent runtimes:
212
212
@@ -307,7 +307,7 @@ For existing projects, use `aisee:spec-migrate` to derive OpenSpec baseline spec
307
307
| `aisee:change-plan` | Plan independent OpenSpec changes and choose schemas. |
308
308
| `aisee-schema-pack` | Provide and maintain OpenSpec schema packs through the marketplace plugin. |
309
309
| `aisee:implementation-bridge` | Produce implementation briefs and context pack summaries for a single change. |
Copy file name to clipboardExpand all lines: docs/best-practices.en.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,12 +132,12 @@ Document-local numbers reduce duplicate naming and let source-map and context pa
132
132
Recommended:
133
133
134
134
- Use document-local numbers such as `FR-001`, `PAGE-001`, or `API-001`.
135
-
- Put cross-document sources in `source-map.md`; do not create an extra ID lifecycle.
135
+
- Put cross-document sources in `source-map.md`; keep only routing information useful for implementation and verification.
136
136
- Keep temporary `TYPE-NEW-001` IDs short-lived; they must not enter archive.
137
137
- When replacing or removing numbers, keep migration notes.
138
138
- Do not treat headings, filenames, or natural-language descriptions as stable identifiers.
139
139
140
-
Use `source-map.md` and context pack's rebuildable scan view as context entries; do not return to the full ID lifecycle model.
140
+
Use `source-map.md` and context pack's rebuildable scan view as context entries; durable specification facts still belong in OpenSpec artifacts and baseline specs.
141
141
142
142
## 8. Context Pack Is A Read Entry, Not A New Document
143
143
@@ -229,10 +229,9 @@ Read the current project's OpenSpec artifacts directly or use `aisee context pac
229
229
Best practices:
230
230
231
231
- The provider owns the contract source.
232
-
- The consumer reads manifest first, then summary or sections as needed.
233
-
- Use `max_chars` to control context size.
234
-
- LAN access requires explicit `--host 0.0.0.0`.
235
-
- Do not use the contract service to expose source code, secrets, environment variables, or full-repository search results.
232
+
- The consumer only reads explicitly shared OpenSpec artifacts, contract attachments, or context pack summaries.
233
+
- Use human-confirmed paths and excerpts to keep context bounded.
234
+
- Do not expose source code, secrets, environment variables, or full-repository search results.
Copy file name to clipboardExpand all lines: docs/compatibility-policy.en.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,10 +90,9 @@ The following are public contracts:
90
90
-`plugins/aisee-plugin/.codex-plugin/plugin.json`, `plugins/aisee-plugin/skills/`, `plugins/aisee-plugin/references/`, and schema pack directories in the GitHub repository remain loadable by the Codex marketplace plugin;
91
91
- the core / optional / knowledge / hardware layering defined in `plugins/aisee-plugin/references/skill-taxonomy.md`, including the core set of 11 workflow skills;
92
92
-`aisee plugin inspect --json` returns stable status and setup hints in CLI-only installs;
93
-
-`aisee plugin export`, `aisee schemas install`, and `aisee knowledge scaffold` have been removed from the public CLI surface;
94
-
- the PyPI wheel no longer promises bundled copies of skills, references, schema packs, team knowledge templates, or plugin metadata.
93
+
- the PyPI wheel only promises CLI capabilities; skills, references, schema packs, team knowledge templates, and plugin metadata are distributed through the marketplace plugin or external repositories.
95
94
96
-
Breaking changes include renaming the plugin, removing the Codex manifest, breaking the marketplace plugin root layout, changing the core set of 11 workflow skills, or reintroducing legacy content-distribution commands without a clear single owner.
95
+
Breaking changes include renaming the plugin, removing the Codex manifest, breaking the marketplace plugin root layout, or changing the core workflow skill set.
97
96
98
97
### Plugin Marketplace
99
98
@@ -114,11 +113,11 @@ See [Plugin Marketplace](plugin-marketplace.en.md) for details.
114
113
The following are public contracts:
115
114
116
115
- the planning-doc frontmatter contract and the read-only diagnostics exposed through `aisee doctor --json` and `aisee context pack --json`;
117
-
- the basic semantics of planning-doc fields such as `status`, `doc_type`, `source_refs`, `change_refs`, and `anchors`;
116
+
- the basic semantics of planning-doc fields such as `status`, `doc_type`, `source_refs`, and `change_refs`;
118
117
-`resolve_project_root` preferring the nearest Aisee/OpenSpec project marker before falling back to the Git top-level;
119
-
- release smoke checks for CLI-only wheels, marketplace setup hints, removed-command invalid choice behavior, and root-resolver fixtures.
118
+
- release smoke checks for CLI-only wheels, marketplace setup hints, the public command surface, and root-resolver fixtures.
120
119
121
-
Breaking changes include turning planning-doc diagnostics into write commands, changing root resolution so monorepo subprojects are silently interpreted as repository roots, or restoring old blocker-JSON assumptions for removed commands.
120
+
Breaking changes include turning planning-doc diagnostics into write commands or changing root resolution so monorepo subprojects are silently interpreted as repository roots.
122
121
123
122
## Experimental Contracts
124
123
@@ -148,7 +147,7 @@ The following are not stable contracts or sources of truth:
148
147
- internal test fixture layout;
149
148
- chat summaries.
150
149
151
-
Caches must be deletable and rebuildable. Sources of truth can only come from OpenSpec artifacts, Aisee registry, source-map, tasks, and explicitly pinned team knowledge card/pack files.
150
+
Caches must be deletable and rebuildable. Sources of truth can only come from OpenSpec artifacts, source-map, tasks, and explicitly pinned team knowledge card/pack files.
0 commit comments