Skip to content
Draft

v3 docs #1421

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
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@ Repo-level test apps live under `tests/`:
- **Verification**: Run format, lint, typecheck, build, test before committing
- **Main branch**: NEVER commit directly
- **Documentation**: Don't create docs unless explicitly asked
- **Docs examples**: Treat external framework memory as stale. Before shipping examples for Next, Nuxt, SvelteKit, Drizzle, Better Auth, Vite, or similar tools, check current upstream docs and align with their recommended patterns. Verify the Agentuity integration locally, but also verify that the surrounding framework usage is idiomatic. Working code is not enough if the setup is not how the framework expects users to do it.
- **Clarification**: Ask before major code changes if unsure
49 changes: 25 additions & 24 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { docRedirectRules, getDemoRedirectTarget } from './src/web/lib/docs-redi
const redirects = new Hono();

// Permanent server-side redirects for legacy docs URLs
// Matching TanStack routes handle the same redirects during client navigation
// Some matching TanStack routes handle redirects during client navigation
for (const rule of docRedirectRules) {
for (const path of rule.paths) {
redirects.get(path, (c) => c.redirect(rule.target, 301));
Expand Down
28 changes: 16 additions & 12 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
"version": "3.0.0-alpha.6",
"license": "Apache-2.0",
"private": true,
"module": ".agentuity/app.js",
"module": "dist/server.js",
"type": "module",
"scripts": {
"predev": "bun run scripts/generate-api-reference.ts && bun run scripts/generate-nav-data.ts && bun run scripts/validate-routes.ts && bun run scripts/generate-markdown-files.ts",
"prebuild": "bun run scripts/generate-api-reference.ts && bun run scripts/generate-nav-data.ts && bun run scripts/validate-routes.ts && bun run scripts/generate-markdown-files.ts",
"predeploy": "cd ../ && bun install && bun run build:packages && cd docs && bun run prebuild",
"build": "bun ../../packages/cli/bin/cli.ts build --dir . --dev",
"dev": "bun ../../packages/cli/bin/cli.ts dev --dir .",
"start": "bun .agentuity/app.js",
"deploy": "bun ../../packages/cli/bin/cli.ts deploy --dir .",
"build": "bun run build:app",
"build:app": "vite build && bun build server.ts --target=bun --outfile=dist/server.js",
"dev": "vite dev --host 0.0.0.0",
"start": "NODE_ENV=production bun dist/server.js",
"agentuity:build": "bun ../packages/cli/bin/cli.ts build --dir . --dev",
"agentuity:dev": "bun ../packages/cli/bin/cli.ts dev --dir .",
"deploy": "bun ../packages/cli/bin/cli.ts deploy --dir .",
"typecheck": "bunx tsc --noEmit",
"build:run": "bun run scripts/bundle-run-scripts.ts",
"generate:scripts": "bun run scripts/generate-sandbox-scripts.ts",
Expand All @@ -25,13 +28,13 @@
"@agentuity/schedule": "workspace:*",
"@agentuity/schema": "workspace:*",
"@agentuity/server": "workspace:*",
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/google": "^2.0.51",
"@ai-sdk/groq": "^2.0.33",
"@ai-sdk/openai": "^2.0.88",
"@ai-sdk/anthropic": "^3.0.72",
"@ai-sdk/google": "^3.0.65",
"@ai-sdk/groq": "^3.0.36",
"@ai-sdk/openai": "^3.0.54",
"@anthropic-ai/sdk": "^0.91.1",
"@heroicons/react": "^2.2.0",
"@mdx-js/react": "^3.1.0",
"@xyflow/react": "^12.6.0",
"@mdx-js/rollup": "^3.1.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-aspect-ratio": "^1.1.8",
Expand All @@ -41,11 +44,12 @@
"@stefanprobst/rehype-extract-toc": "^3.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-router": "^1.157.18",
"ai": "^5.0.116",
"@xyflow/react": "^12.6.0",
"ai": "^6.0.170",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"cmdk": "^1.1.1",
"gray-matter": "^4.0.3",
"hono": "^4.11.3",
"langchain": "^0.3.0",
"lucide-react": "^0.548.0",
Expand Down
Loading
Loading