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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ go-dist/
*.test
.golangci-cache/

# seo-cli local state
.seo/

# Bundled go:embed sources — regenerated by `task sync-bundled` (cheap
# cp from packages/templates/ + packages/skills/) and `task sync-web`
# (pnpm install + vite build of apps/dashboard/). Both run as deps of
Expand Down
40 changes: 20 additions & 20 deletions apps/docs/public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> One CLI is a Go-based scaffolding and governance tool for AI-native monorepo workspaces.

Canonical site: https://1cli.dev/
Canonical site: https://www.1cli.dev/

## What it is

Expand All @@ -12,14 +12,14 @@ Use it when a coding agent or engineer needs a predictable workspace contract in

## Core documentation

- Quick start: https://1cli.dev/en/docs/quick-start/
- Installation: https://1cli.dev/en/docs/installation/
- CLI overview: https://1cli.dev/en/docs/cli-overview/
- Manifest reference: https://1cli.dev/en/docs/manifest/
- Templates: https://1cli.dev/en/docs/templates/
- Template examples: https://1cli.dev/en/templates/
- Agent skills: https://1cli.dev/en/docs/skills/
- Error codes: https://1cli.dev/en/docs/error-codes/
- Quick start: https://www.1cli.dev/en/docs/quick-start/
- Installation: https://www.1cli.dev/en/docs/installation/
- CLI overview: https://www.1cli.dev/en/docs/cli-overview/
- Manifest reference: https://www.1cli.dev/en/docs/manifest/
- Templates: https://www.1cli.dev/en/docs/templates/
- Template examples: https://www.1cli.dev/en/templates/
- Agent skills: https://www.1cli.dev/en/docs/skills/
- Error codes: https://www.1cli.dev/en/docs/error-codes/

## Key concepts

Expand All @@ -40,17 +40,17 @@ The site explains how agents should work from `one.manifest.json`, prefer JSON o

Recommended entry points for AI summarizers:

- https://1cli.dev/en/docs/ai-native/
- https://1cli.dev/en/docs/skills/
- https://1cli.dev/en/blog/ai-native-monorepo-cli/
- https://1cli.dev/en/blog/coding-agent-workspace-setup/
- https://1cli.dev/en/blog/json-cli-contracts-for-agents/
- https://1cli.dev/en/blog/monorepo-scaffold-manifest/
- https://1cli.dev/en/blog/template-governance-for-ai-workspaces/
- https://1cli.dev/en/blog/one-cli-vs-general-scaffolding/
- https://1cli.dev/en/blog/agent-skill-context/
- https://1cli.dev/en/blog/manifest-as-contract/
- https://1cli.dev/en/blog/preset-id-boundary/
- https://www.1cli.dev/en/docs/ai-native/
- https://www.1cli.dev/en/docs/skills/
- https://www.1cli.dev/en/blog/ai-native-monorepo-cli/
- https://www.1cli.dev/en/blog/coding-agent-workspace-setup/
- https://www.1cli.dev/en/blog/json-cli-contracts-for-agents/
- https://www.1cli.dev/en/blog/monorepo-scaffold-manifest/
- https://www.1cli.dev/en/blog/template-governance-for-ai-workspaces/
- https://www.1cli.dev/en/blog/one-cli-vs-general-scaffolding/
- https://www.1cli.dev/en/blog/agent-skill-context/
- https://www.1cli.dev/en/blog/manifest-as-contract/
- https://www.1cli.dev/en/blog/preset-id-boundary/

## Languages

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/lib/seo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import { htmlLang, type Locale } from "@/i18n";

export const siteUrl = "https://1cli.dev";
export const siteUrl = "https://www.1cli.dev";
export const siteName = "One CLI";
export const defaultDescription =
"One CLI is a scaffolding and governance tool for AI-native monorepo workspaces, templates, manifests, local configuration, and agent-ready command flows.";
Expand Down
13 changes: 13 additions & 0 deletions apps/docs/vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
"framework": "nextjs",
"installCommand": "pnpm install --frozen-lockfile",
"buildCommand": "pnpm build",
"redirects": [
{
"source": "/:path*",
"has": [
{
"type": "host",
"value": "1cli.dev"
}
],
"destination": "https://www.1cli.dev/:path*",
"permanent": true
}
],
"headers": [
{
"source": "/install.sh",
Expand Down
13 changes: 13 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
"framework": "nextjs",
"installCommand": "pnpm --dir apps/docs install --frozen-lockfile",
"buildCommand": "pnpm --dir apps/docs build",
"redirects": [
{
"source": "/:path*",
"has": [
{
"type": "host",
"value": "1cli.dev"
}
],
"destination": "https://www.1cli.dev/:path*",
"permanent": true
}
],
"headers": [
{
"source": "/install.sh",
Expand Down
Loading