Skip to content

Commit 73b42e6

Browse files
committed
Initial AgentDispatch scaffold
0 parents  commit 73b42e6

8 files changed

Lines changed: 1160 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
docs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Check docs
14+
run: test -f README.md && test -d docs

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
dist
3+
coverage
4+
.agentdispatch
5+
*.log

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributing
2+
3+
AgentDispatch packages are developed as separate repositories under the `agent-dispatch` GitHub organization. Keep public contracts in `@agentdispatch/core` provider-neutral and avoid adding cloud-specific fields outside adapter-owned `details` or `providerRefs` objects.
4+
5+
Run these checks before opening a pull request:
6+
7+
```bash
8+
npm test
9+
npm run typecheck
10+
npm run build
11+
```

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Apache License 2.0
2+
3+
Copyright 2026 AgentDispatch contributors
4+
5+
Licensed under the Apache License, Version 2.0. You may obtain a copy at:
6+
7+
https://www.apache.org/licenses/LICENSE-2.0

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# AgentDispatch Docs
2+
3+
Documentation repository for the `agent-dispatch` GitHub organization.
4+
5+
- `docs/technical-design.md`: provider-neutral OSS architecture.
6+
- `docs/aws-agentcore-adapter.md`: AWS AgentCore adapter design.
7+
- `docs/agent-core-runtime-design.md`: product/runtime design.

0 commit comments

Comments
 (0)