Skip to content

brettdavies/agentnative-site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agentnative-site

Source for the agent-native CLI standard website. Presents the 7 principles for building CLI tools that AI agents can operate as first-class users.

Development

Static HTML + CSS. No build step. Open index.html in a browser.

After cloning, point git at the repo's hook directory once:

git config core.hooksPath scripts/hooks

This enables scripts/hooks/pre-push, which runs bun run lint, bun run build, bun test, and wrangler deploy --dry-run before every push — the same gates CI enforces. Bypass intentionally with git push --no-verify if you really need to (rare; the hook exists to catch what we've lost time to before).

Deployment

Cloudflare Workers. Pushes to main deploy automatically.

Related