Skip to content

Commit ddaab41

Browse files
committed
Release Agent Knowledge v0.6.1
1 parent 164fa95 commit ddaab41

17 files changed

Lines changed: 14629 additions & 3 deletions

File tree

docs/.vitepress/config.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const enNav = [
1010
text: 'Version',
1111
items: [
1212
{ text: 'latest', link: '/en/specification' },
13+
{ text: 'v0.6.1 overview', link: '/en/versions/v0.6.1/overview' },
14+
{ text: 'v0.6.1', link: '/en/versions/v0.6.1/specification' },
1315
{ text: 'v0.6.0 overview', link: '/en/versions/v0.6.0/overview' },
1416
{ text: 'v0.6.0', link: '/en/versions/v0.6.0/specification' },
1517
{ text: 'v0.5.0 overview', link: '/en/versions/v0.5.0/overview' },
@@ -34,6 +36,8 @@ const zhNav = [
3436
text: '版本',
3537
items: [
3638
{ text: 'latest', link: '/zh/specification' },
39+
{ text: 'v0.6.1 概览', link: '/zh/versions/v0.6.1/overview' },
40+
{ text: 'v0.6.1', link: '/zh/versions/v0.6.1/specification' },
3741
{ text: 'v0.6.0 概览', link: '/zh/versions/v0.6.0/overview' },
3842
{ text: 'v0.6.0', link: '/zh/versions/v0.6.0/specification' },
3943
{ text: 'v0.5.0 概览', link: '/zh/versions/v0.5.0/overview' },
@@ -110,6 +114,9 @@ const enSidebar = [
110114
{
111115
text: 'Versions',
112116
items: [
117+
{ text: 'v0.6.1 overview', link: '/en/versions/v0.6.1/overview' },
118+
{ text: 'v0.6.1 specification', link: '/en/versions/v0.6.1/specification' },
119+
{ text: 'v0.6.1 changelog', link: '/en/versions/v0.6.1/changelog' },
113120
{ text: 'v0.6.0 overview', link: '/en/versions/v0.6.0/overview' },
114121
{ text: 'v0.6.0 specification', link: '/en/versions/v0.6.0/specification' },
115122
{ text: 'v0.6.0 changelog', link: '/en/versions/v0.6.0/changelog' },
@@ -191,6 +198,9 @@ const zhSidebar = [
191198
{
192199
text: '版本',
193200
items: [
201+
{ text: 'v0.6.1 概览', link: '/zh/versions/v0.6.1/overview' },
202+
{ text: 'v0.6.1 规范', link: '/zh/versions/v0.6.1/specification' },
203+
{ text: 'v0.6.1 变更记录', link: '/zh/versions/v0.6.1/changelog' },
194204
{ text: 'v0.6.0 概览', link: '/zh/versions/v0.6.0/overview' },
195205
{ text: 'v0.6.0 规范', link: '/zh/versions/v0.6.0/specification' },
196206
{ text: 'v0.6.0 变更记录', link: '/zh/versions/v0.6.0/changelog' },
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: v0.6.1 Changelog
3+
description: Agent Knowledge v0.6.1 changelog.
4+
---
5+
6+
# v0.6.1 Changelog
7+
8+
## Added
9+
10+
- Added root and site-root `llms.txt` files for concise LLM navigation.
11+
- Added root and site-root `llms-full.txt` files with concatenated English core documentation and source URLs.
12+
- Added `llm.txt` and `llm-full.txt` compatibility aliases.
13+
- Added LLM entrypoint files to the package manifest.
14+
15+
## Changed
16+
17+
- Updated version navigation to include v0.6.1.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: v0.6.1 Overview
3+
description: What changed in Agent Knowledge v0.6.1.
4+
---
5+
6+
# v0.6.1 Overview
7+
8+
v0.6.1 adds LLM-friendly documentation entrypoints for Agent Knowledge. The release publishes concise and full-context markdown files at the repository root and the documentation site root so AI clients can discover the knowledge-pack standard directly.
9+
10+
## Highlights
11+
12+
- Adds `llms.txt` as the concise LLM navigation index.
13+
- Adds `llms-full.txt` as a concatenated English core documentation file with source URLs.
14+
- Adds compatible `llm.txt` and `llm-full.txt` aliases.
15+
- Publishes the same files through `docs/public/` so GitHub Pages serves them from the site root.
16+
- Includes the LLM entrypoint files in the package manifest.
17+
18+
## Compatibility
19+
20+
v0.6.1 is compatible with v0.6.0. It does not change the Agent Knowledge pack format, schemas, runtime modes, or CLI behavior.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: v0.6.1 Specification Snapshot
3+
description: Agent Knowledge v0.6.1 specification snapshot.
4+
---
5+
6+
# v0.6.1 Specification Snapshot
7+
8+
v0.6.1 keeps the v0.6.0 Agent Knowledge pack semantics and adds documentation distribution requirements for LLM-friendly consumers.
9+
10+
## Required documentation entrypoints
11+
12+
A compatible documentation distribution SHOULD expose:
13+
14+
- `llms.txt`: concise project summary and links to primary docs.
15+
- `llms-full.txt`: concatenated current English core docs with source URLs.
16+
- `llm.txt`: compatibility alias for clients that look for singular naming.
17+
- `llm-full.txt`: compatibility alias for full-context singular naming.
18+
19+
When hosted as a static site, these files SHOULD be served from the site root.

docs/public/llm-full.txt

Lines changed: 3555 additions & 0 deletions
Large diffs are not rendered by default.

docs/public/llm.txt

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Agent Knowledge
2+
3+
> Agent Knowledge is a portable standard for agent-readable knowledge packs. It defines how curated source-grounded knowledge is described, discovered, compiled, selected, cited, evaluated, maintained, and loaded by AI clients without turning the knowledge pack into a tool or a skill.
4+
5+
Use this file as the concise navigation index for LLMs. Use `llms-full.txt` when a single prompt needs the current core documentation in one markdown file.
6+
7+
## Full context
8+
9+
- [llms-full.txt](https://limecloud.github.io/agentknowledge/llms-full.txt): Concatenated current English documentation with source URLs.
10+
11+
## Primary docs
12+
13+
- [What is Agent Knowledge?](https://limecloud.github.io/agentknowledge/en/what-is-agent-knowledge): Conceptual entry point and scope.
14+
- [Specification](https://limecloud.github.io/agentknowledge/en/specification): Latest portable Agent Knowledge specification.
15+
- [Knowledge vs Skills](https://limecloud.github.io/agentknowledge/en/agent-knowledge-vs-skills): Boundary between knowledge packs and skills.
16+
- [Quickstart](https://limecloud.github.io/agentknowledge/en/authoring/quickstart): Authoring quickstart.
17+
18+
## Pack authoring
19+
20+
- [Description and discovery](https://limecloud.github.io/agentknowledge/en/authoring/description-and-discovery): Pack metadata and discoverability.
21+
- [Best practices](https://limecloud.github.io/agentknowledge/en/authoring/best-practices): Authoring rules for high-quality knowledge.
22+
- [Knowledge engineering loop](https://limecloud.github.io/agentknowledge/en/authoring/knowledge-engineering-loop): Author, evaluate, maintain, and improve loop.
23+
- [Compilation model](https://limecloud.github.io/agentknowledge/en/authoring/compilation-model): Compile pipeline and outputs.
24+
- [Grounding and citations](https://limecloud.github.io/agentknowledge/en/authoring/grounding-and-citations): Source grounding and citation requirements.
25+
- [Linting and review](https://limecloud.github.io/agentknowledge/en/authoring/linting-and-review): Review and linting expectations.
26+
- [Maintenance automation](https://limecloud.github.io/agentknowledge/en/authoring/maintenance-automation): Automated refresh and maintenance.
27+
- [Skills interop](https://limecloud.github.io/agentknowledge/en/authoring/skills-interop): Interoperability with skills.
28+
- [Discovery evals](https://limecloud.github.io/agentknowledge/en/authoring/discovery-evals): Discovery evaluation design.
29+
- [Evaluating knowledge](https://limecloud.github.io/agentknowledge/en/authoring/evaluating-knowledge): Knowledge quality evaluation.
30+
31+
## Client implementation
32+
33+
- [Adding support](https://limecloud.github.io/agentknowledge/en/client-implementation/adding-support): Client support checklist.
34+
- [Discovery and loading](https://limecloud.github.io/agentknowledge/en/client-implementation/discovery-and-loading): Discovery, loading, and selection.
35+
- [Runtime standard](https://limecloud.github.io/agentknowledge/en/client-implementation/runtime-standard): Runtime integration.
36+
- [Runtime context resolver](https://limecloud.github.io/agentknowledge/en/client-implementation/runtime-context-resolver): Context resolver contract.
37+
- [Security model](https://limecloud.github.io/agentknowledge/en/client-implementation/security-model): Trust, permissions, and security.
38+
39+
## Examples
40+
41+
- [Personal IP pack](https://limecloud.github.io/agentknowledge/en/examples/personal-ip): Personal intellectual property example.
42+
- [Brand product pack](https://limecloud.github.io/agentknowledge/en/examples/brand-product): Brand and product example.
43+
- [Content operations pack](https://limecloud.github.io/agentknowledge/en/examples/content-operations): Content operations example.
44+
- [Private-domain operations pack](https://limecloud.github.io/agentknowledge/en/examples/private-domain-operations): Private-domain operations example.
45+
- [Organization know-how pack](https://limecloud.github.io/agentknowledge/en/examples/organization-knowhow): Organization know-how example.
46+
- [Complete pack](https://limecloud.github.io/agentknowledge/en/examples/complete-pack): Complete reference pack.
47+
48+
## Reference
49+
50+
- [LLM Wiki pattern](https://limecloud.github.io/agentknowledge/en/reference/llm-wiki-pattern): Pattern for LLM-friendly wiki-like knowledge.
51+
- [RAG comparison](https://limecloud.github.io/agentknowledge/en/reference/rag-comparison): Comparison with RAG approaches.
52+
- [Reference CLI](https://limecloud.github.io/agentknowledge/en/reference/reference-cli): Reference CLI documentation.
53+
- [Glossary](https://limecloud.github.io/agentknowledge/en/reference/glossary): Terms used by the standard.
54+
55+
## Versions
56+
57+
- [v0.6.1 overview](https://limecloud.github.io/agentknowledge/en/versions/v0.6.1/overview): Latest released version overview.
58+
- [v0.6.1 specification snapshot](https://limecloud.github.io/agentknowledge/en/versions/v0.6.1/specification): Latest released specification snapshot.
59+
60+
## Schemas
61+
62+
- [Compile run schema](https://limecloud.github.io/agentknowledge/schemas/compile-run.schema.json): Compile run schema.
63+
- [Context resolution schema](https://limecloud.github.io/agentknowledge/schemas/context-resolution.schema.json): Context resolution schema.
64+
- [Selection eval schema](https://limecloud.github.io/agentknowledge/schemas/selection-eval.schema.json): Selection evaluation schema.
65+
- [Source map schema](https://limecloud.github.io/agentknowledge/schemas/source-map.schema.json): Source map schema.
66+
67+
## Language mirrors
68+
69+
- Chinese documentation is available under `/zh/` with matching page structure where translated pages exist.

0 commit comments

Comments
 (0)