Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6e3b789
Implement comprehensive ADCP agent configuration system
bokelley Sep 21, 2025
4fc7f62
Enhance protocol detection with standardized status field support
bokelley Sep 21, 2025
c387cf4
Simplify protocol detection to follow ADCP spec exactly
bokelley Sep 21, 2025
9ed0be7
Implement ADCP async execution model with handler-controlled flow
bokelley Sep 22, 2025
f03a123
Consolidate documentation structure for better developer experience
bokelley Sep 23, 2025
e8953d7
Improve documentation serving and local development experience
bokelley Sep 23, 2025
1ba563d
Add GitHub Pages local preview best practices
bokelley Sep 23, 2025
add2325
Improve Jekyll setup and handle macOS Ruby permissions
bokelley Sep 23, 2025
bcbc2af
Fix CI security audit failures by removing vulnerable dependencies
bokelley Sep 23, 2025
f5ae960
Update testing UI to use new async API and fix MCP parameter issue
bokelley Sep 23, 2025
0b6cdfc
Fix get_media_buy_delivery to comply with official AdCP v1.6.0 spec
bokelley Sep 23, 2025
613f54d
Fix TypeScript compilation errors and update build process
bokelley Sep 23, 2025
359cb24
Merge remote-tracking branch 'origin/main' into new-sdk-api
bokelley Sep 23, 2025
6c10c1b
Resolve merge conflicts by preserving async implementation and fixing…
bokelley Sep 23, 2025
521e566
Sync schemas, version, and generated types for AdCP v1.6.0
bokelley Sep 23, 2025
dca5092
Fix CI issues and update to prerelease version 0.2.0
bokelley Sep 23, 2025
0bb6167
Document type-safe API features and bump to v0.2.1
bokelley Sep 23, 2025
3e49776
chore: update generated types timestamp
bokelley Sep 23, 2025
a8e6bce
feat: comprehensive local CI validation workflow
bokelley Sep 23, 2025
ffa800f
chore: update generated types timestamps
bokelley Sep 23, 2025
291edc9
fix: prevent unnecessary timestamp updates in generated files
bokelley Sep 23, 2025
67e3e95
chore: update timestamps from previous generation runs
bokelley Sep 23, 2025
0aacd5e
test: dummy change to test pre-push hook
bokelley Sep 23, 2025
8a99bbd
clean: remove test file
bokelley Sep 23, 2025
9a501ce
fix: address user feedback for v0.2.2 - build scripts, type safety, a…
bokelley Sep 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Deploy Documentation

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build library
run: npm run build:lib

- name: Generate API docs
run: npm run docs

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Loading