Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions .github/workflows/agentaction-site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: AgentAction Site

on:
pull_request:
paths:
- "website/**"
- ".github/workflows/agentaction-site.yml"
push:
branches: [main]
paths:
- "website/**"
- ".github/workflows/agentaction-site.yml"

permissions:
contents: read

jobs:
validate:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "22.13.0"
cache: npm
cache-dependency-path: website/package-lock.json

- name: Install dependencies
run: npm ci

- name: Lint
run: npm run lint

- name: Build and test rendered site
run: npm test

- name: Audit production dependencies
run: npm audit --omit=dev
46 changes: 46 additions & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/.vinext/
/out/

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
next-env.d.ts
/dist/
/.wrangler/
/outputs/
/work/

# build contains the source plugin that packages Sites metadata; dist is output.
!/build/
!/build/sites-vite-plugin.ts
5 changes: 5 additions & 0 deletions website/.openai/hosting.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"project_id": "appgprj_6a7a9e1dfb0c8191ba3ce97f6dc81832",
"d1": null,
"r2": null
}
30 changes: 30 additions & 0 deletions website/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# AgentAction website

The public technical website for AgentAction, the project brand succeeding
AgentPass. The site explains the action-authorization boundary, trust model,
current implementation evidence, roadmap, and open-source participation paths.

Existing package names, schemas, CLI commands, and repository links continue to
use AgentPass-compatible identifiers during the migration.

## Local development

Requires Node.js `>=22.13.0`.

```bash
npm install
npm run dev
```

## Validation

```bash
npm run build
npm run lint
node --test tests/rendered-html.test.mjs
npm audit --omit=dev
```

The production build targets a Cloudflare Worker through vinext. Hosting
metadata is stored in `.openai/hosting.json`; no credentials belong in the
repository.
Loading
Loading