Skip to content

Commit 0e76bf0

Browse files
committed
docs: update for docker/docker-agent#3390 - add tags field to metadata
Document the tags field on the metadata section, used for agent categorization and discovery when publishing to OCI registries.
1 parent 51843c3 commit 0e76bf0

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

  • content/manuals/ai/docker-agent/reference

content/manuals/ai/docker-agent/reference/config.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ rag: # Optional - RAG sources
3434
docs: [./documents]
3535
strategies: [...]
3636

37-
metadata: # Optional - author, license, readme
37+
metadata: # Optional - author, license, readme, version, tags
3838
author: Your Name
3939
```
4040
@@ -604,16 +604,20 @@ Results:
604604

605605
Documentation and sharing information:
606606

607-
| Property | Type | Description |
608-
| --------- | ------ | ------------------------------- |
609-
| `author` | string | Author name |
610-
| `license` | string | License (e.g., MIT, Apache-2.0) |
611-
| `readme` | string | Usage documentation |
607+
| Property | Type | Description |
608+
| --------- | -------- | ----------------------------------------- |
609+
| `author` | string | Author name |
610+
| `license` | string | License (e.g., MIT, Apache-2.0) |
611+
| `readme` | string | Usage documentation |
612+
| `version` | string | Semantic version string |
613+
| `tags` | []string | Tags for categorization and discovery |
612614

613615
```yaml
614616
metadata:
615617
author: Your Name
616618
license: MIT
619+
version: "1.0.0"
620+
tags: [coding, review]
617621
readme: |
618622
Description and usage instructions
619623
```

0 commit comments

Comments
 (0)