@@ -27,7 +27,7 @@ yavy generate my-org/my-project
2727
2828### ` yavy login `
2929
30- Opens your browser to authenticate with your Yavy account. Credentials are stored in ` ~/.yavy/credentials.json ` .
30+ Opens your browser to authenticate with your Yavy account using OAuth (PKCE) . Credentials are stored in ` ~/.yavy/credentials.json ` .
3131
3232### ` yavy logout `
3333
@@ -43,24 +43,31 @@ Lists all projects you have access to across your organizations.
4343
4444### ` yavy generate <org/project> `
4545
46- Generates a skill file from a project's indexed documentation.
46+ Downloads a skill from a project's indexed documentation.
4747
4848| Flag | Description |
4949| ----------------- | ----------------------------------------------------- |
5050| ` --global ` | Save to global skills directory (` ~/.claude/skills/ ` ) |
5151| ` --output <path> ` | Custom output path |
52- | ` --force ` | Force regeneration even if cached |
52+ | ` --force ` | Overwrite existing skill files |
5353| ` --json ` | Output as JSON |
5454
55- By default, skills are saved to ` .claude/skills/<project>/SKILL.md ` in the current directory.
55+ By default, skills are saved to ` .claude/skills/<project>/ ` in the current directory.
5656
5757## How It Works
5858
59591 . Yavy indexes your documentation sources (websites, GitHub repos, Confluence, Notion)
60- 2 . The CLI calls the Yavy API to generate a skill using the indexed content
60+ 2 . The CLI calls the Yavy API to download a skill using the indexed content
61613 . The skill file is saved locally for your AI coding tools to discover
62624 . AI coding assistants automatically activate the skill when working with relevant code
6363
64+ ## Configuration
65+
66+ | Environment Variable | Description | Default |
67+ | -------------------- | ------------------------ | ------------------ |
68+ | ` YAVY_BASE_URL ` | Override API base URL | ` https://yavy.dev ` |
69+ | ` YAVY_CLIENT_ID ` | Override OAuth client ID | (built-in) |
70+
6471## Related
6572
6673- [ Yavy Claude Code Plugin] ( https://github.com/yavydev/claude-code ) — Claude Code plugin with interactive setup
0 commit comments