Skip to content

Commit a85e1a7

Browse files
committed
docu link update
1 parent 2aec231 commit a85e1a7

4 files changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Fetch AID Spec Repository
2424
run: |
25-
git clone --depth 1 https://github.com/agentcommunity/AgentInterfaceDiscovery ../AgentInterfaceDiscovery
25+
git clone --depth 1 https://github.com/agentcommunity/agent-interface-discovery ../agent-interface-discovery
2626
2727
- name: Install Python Dependencies
2828
run: pip install -r requirements.txt

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ set -e
66
echo "--- Cloning external spec repository ---"
77
# Clean up old clones and fetch the latest spec repo
88
rm -rf tmp-spec-repo
9-
git clone --depth 1 https://github.com/agentcommunity/AgentInterfaceDiscovery tmp-spec-repo
9+
git clone --depth 1 https://github.com/agentcommunity/agent-interface-discovery tmp-spec-repo
1010

1111
echo "--- Moving spec docs into place ---"
1212
# Clean up the old spec files to prevent nesting on rebuild
1313
rm -rf docs/aid
1414
# Move the markdown files into the docs directory for MkDocs to find
15-
mv tmp-spec-repo/docs/aid docs/aid
15+
mv tmp-spec-repo/packages/docs docs/aid
1616

1717
echo "--- Building MkDocs site ---"
1818
# Build the main HTML documentation

docs/stylesheets/custom.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,3 +455,6 @@
455455
display: none !important;
456456
}
457457

458+
.aid-page .md-content__button.md-content__button--view {
459+
display: none !important;
460+
}

mkdocs.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,8 @@ nav:
7575
- Agent Interface Discovery (AID):
7676
- Introduction: 'aid/index.md'
7777
- Design Rationale: 'aid/rationale.md'
78-
- v1:
79-
- Specification: aid/v1/specification.md
80-
- JSON Schema: /schema/v1/aid.schema.json
81-
- Tools (Generator / Resolver / Validator): aid/generator.md
82-
- Versioning: aid/versioning.md
83-
- SDKs:
84-
- Python SDK: 'https://github.com/agentcommunity/AgentInterfaceDiscovery/tree/main/packages/aid-core-py'
85-
- Go SDK: 'https://github.com/agentcommunity/AgentInterfaceDiscovery/tree/main/packages/aid-core-go'
78+
- Specification: 'aid/specification.md'
79+
- Versioning: 'aid/versioning.md'
8680
- 'Discussions': 'https://github.com/orgs/agentcommunity/discussions'
8781

8882
# Markdown Extensions
@@ -112,9 +106,9 @@ plugins:
112106
cards: true
113107
- redirects:
114108
redirect_maps:
115-
'specs/aid/introduction.md': 'aid/introduction.md'
109+
'specs/aid/introduction.md': 'aid/index.md'
116110
'specs/aid/rationale.md': 'aid/rationale.md'
117-
'specs/aid/spec-v1.md': 'aid/v1/specification.md'
111+
'specs/aid/spec-v1.md': 'aid/specification.md'
118112

119113
# Tags Configuration
120114
extra:

0 commit comments

Comments
 (0)