@agentskit/doc-bridge 1.11.2 → 1.12.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 +12 -2
- package/README.md +3 -2
- package/action.yml +1 -1
- package/dist/cli/program.js +582 -470
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.js +500 -388
- package/dist/index.js.map +1 -1
- package/docs/DESIGN.md +71 -0
- package/docs/MARKETPLACE-ECOSYSTEM-PLAN.md +1 -1
- package/docs/PRD-enterprise-hardening.md +5 -5
- package/docs/PRD-knowledge-retrieval-and-enrichment.md +1 -1
- package/docs/knowledge-engine-runbook.md +1 -1
- package/docs/loop-workflow.md +15 -15
- package/docs/spec/config-v1.md +29 -7
- package/docs/spec/documentation-standard-v1.md +5 -0
- package/docs/spec/mcp-knowledge-tools-v1.md +1 -1
- package/docs/validation-cycle-plan.md +13 -13
- package/ecosystem-claims.json +23 -14
- package/ecosystem-upstream.json +3 -3
- package/ecosystem.json +318 -99
- package/mcpb/manifest.json +1 -1
- package/package.json +2 -1
- package/skills/doc-bridge-handoff/SKILL.md +1 -1
- package/skills/doc-bridge-handoff/scripts/resolve-handoff.mjs +1 -1
- package/src/conformance/ecosystem-contract.ts +10 -24
- package/src/discovery/repository.ts +7 -1
- package/src/findings/report.ts +1 -1
- package/src/fixes/proposals.ts +4 -2
- package/src/gates/run-gates.ts +1 -1
- package/src/index-builder/human-adapters/core.ts +10 -4
- package/src/lib/ignore-filter.ts +151 -0
- package/src/lib/walk.ts +10 -2
- package/src/memory/ingest.ts +1 -1
- package/src/report/html.ts +1 -1
- package/src/safety/repository.ts +9 -0
- package/src/version.ts +1 -1
- package/docs/DOGFOOD-ROUND2.md +0 -147
- package/docs/DOGFOOD-ROUND3.md +0 -79
- package/docs/DOGFOOD-V1.md +0 -89
- package/docs/DOGFOOD.md +0 -97
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6d552b3: Repository scans now respect ignore rules. `ak-docs index`, `doctor`, `scan`/`check`, gates, and link-fix proposals skip every path the repository ignores — via `git ls-files --cached --others --exclude-standard` inside a Git work tree (nested `.gitignore`, `.git/info/exclude`, and global excludes included; tracked files are kept), or the on-disk `.gitignore` files outside Git — in addition to the built-in safety excludes. Build output such as `.next/`, `.source/`, generated API pages, or `next-env.d.ts` no longer enters a committed index, so `index-freshness` and `index-reproducible` agree across clean checkouts. Agent-memory ingestion still reads gitignored memory directories.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 6d552b3: The documentation-standard ecosystem contract no longer hard-codes product membership. It used to require the deprecated `properties` shim to project either a fixed three-product list that included Playbook or a fixed six-product list without Harness, which forced repositories to keep a hidden `playbook` record in `ecosystem.json`. Membership now comes from the canonical manifest: the shim is optional, and each entry must name a distinct `products[]` record and match it exactly.
|
|
12
|
+
|
|
3
13
|
## 1.11.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
6
16
|
|
|
7
|
-
- 221b4a6: Retire
|
|
17
|
+
- 221b4a6: Retire a deprecated ecosystem contract and generated documentation references.
|
|
8
18
|
|
|
9
19
|
## 1.11.1
|
|
10
20
|
|
|
@@ -1063,7 +1073,7 @@ Dogfood round-2 fixes (search ranking, full-text body, peers, federation soft-fa
|
|
|
1063
1073
|
|
|
1064
1074
|
## 0.1.0-alpha.2
|
|
1065
1075
|
|
|
1066
|
-
Dogfood-driven polish after ecosystem install on agentskit,
|
|
1076
|
+
Dogfood-driven polish after ecosystem install on agentskit, playbook, registry, and a product monorepo.
|
|
1067
1077
|
|
|
1068
1078
|
### Fixes / features
|
|
1069
1079
|
|
package/README.md
CHANGED
|
@@ -297,7 +297,7 @@ gates without silently rebuilding them. It rejects non-exact package versions.
|
|
|
297
297
|
See the [Marketplace guide](docs/MARKETPLACE.md).
|
|
298
298
|
|
|
299
299
|
The guide is pinned to the published stable Action release `v1.7.45`; the
|
|
300
|
-
checked-in package version is `1.
|
|
300
|
+
checked-in package version is `1.12.0`.
|
|
301
301
|
|
|
302
302
|
Coverage is repository-specific. Run `ak-docs doctor --badge` locally to emit
|
|
303
303
|
current handoff and human-bridge badges, or `pnpm coverage:badge` in CI; this
|
|
@@ -350,7 +350,8 @@ Designed for and dogfooded on open AgentsKit surfaces:
|
|
|
350
350
|
| **Registry** | [registry.agentskit.io](https://registry.agentskit.io/) |
|
|
351
351
|
| **Playbook** | [playbook.agentskit.io](https://playbook.agentskit.io/llms.txt) |
|
|
352
352
|
| **AgentsKit Chat** | [documentation](https://chat.agentskit.io) · [source](https://github.com/AgentsKit-io/agentskit-chat) |
|
|
353
|
-
| **Code Review** | [
|
|
353
|
+
| **Code Review** | [site](https://code-review.agentskit.io) · [source](https://github.com/AgentsKit-io/code-review) |
|
|
354
|
+
| **Harness** | [documentation](https://harness.agentskit.io/) · [source](https://github.com/AgentsKit-io/harness) |
|
|
354
355
|
| **This repo** | CI green · `ak-docs gate run` on every PR |
|
|
355
356
|
|
|
356
357
|
**Playbook pattern:** [`docs/playbook/doc-bridge-pattern.md`](docs/playbook/doc-bridge-pattern.md) — export with `ak-docs playbook pattern --text`
|