基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jleechanorg/claude-commands --skill ai-universe-auth命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Token-efficient second opinion slash command /advice. Extracts decision point + artifact (≤150 lines), then fans out in parallel: (1) Opus subagent reviewer with fallback chain codex→agy→cursor, (2) /research on the decision topic, (3) /secondo multi-model opinion. Use instead of advisor() which ships the full conversation uncached.
Use this skill when working in repositories managed by Agent Orchestrator or when the user asks how to use `ao` properly. Covers the default AO workflow: bootstrap with `ao start`, dispatch work with `ao spawn`, inspect progress with `ao status` or `ao session ls`, steer sessions with `ao send`, and recover or clean up sessions safely. Includes strict parameter fidelity, pre-spawn cap cleanup, quota-wall fallback, and post-spawn verification.
Generate a full agento PR status report — draft readiness, canonical /green, zero-touch rate, inline display, and Slack summary.
| name | ai-universe-auth |
| description | Authenticate with AI Universe MCP server for multi-model commands |
| type | setup |
| scope | project |
This skill provides authentication setup for the AI Universe MCP server, which powers the /secondo command for multi-model AI feedback.
IMPORTANT: Always look for auth-cli.mjs in these locations (in order of preference):
| Location | Description | Has node_modules |
|---|---|---|
scripts/auth-cli.mjs | Project-local (recommended) | Needs parent project |
~/.claude/scripts/auth-cli.mjs | User-global fallback | Yes (if installed) |
~/projects/ai_universe/scripts/auth-cli.mjs | Source of truth | Yes |
To run the script, use a directory that has node_modules with express installed:
# From ai_universe project (always works)
cd ~/projects/ai_universe && node scripts/auth-cli.mjs status
# Or from ~/.claude if deps installed
node ~/.claude/scripts/auth-cli.mjs status
The script supports two Firebase projects. Use the correct one for your use case:
| Project | Firebase ID | Use Case | Command |
|---|---|---|---|
| AI Universe | ai-universe-b3551 | /secondo, multi-model synthesis | node scripts/auth-cli.mjs token (default) |
| WorldAI | worldarchitecture-ai | WorldArchitect.AI app auth | node scripts/auth-cli.mjs token --project worldarchitecture-ai |
ai-universe-b3551) - DEFAULT/secondo command for multi-model second opinions# Default - no flag needed
node scripts/auth-cli.mjs login
node scripts/auth-cli.mjs token
worldarchitecture-ai)# Explicit project flag required
node scripts/auth-cli.mjs login --project worldarchitecture-ai
node scripts/auth-cli.mjs token --project worldarchitecture-ai
npm install express)# AI Universe (default) - for /secondo
node scripts/auth-cli.mjs login
# WorldAI - for WorldArchitect.AI
node scripts/auth-cli.mjs login --project worldarchitecture-ai
What happens:
~/.ai-universe/auth-token-<project-id>.jsonnode scripts/auth-cli.mjs status
Output includes:
# Get token (auto-refreshes if expired, does nothing if valid)
TOKEN=$(node scripts/auth-cli.mjs token)
echo $TOKEN
# For WorldAI project
TOKEN=$(node scripts/auth-cli.mjs token --project worldarchitecture-ai)
Token Behavior:
This enables seamless 30+ day sessions.
node scripts/auth-cli.mjs refresh
node scripts/auth-cli.mjs test
node scripts/auth-cli.mjs logout
# Option 1: Run from ai_universe project
cd ~/projects/ai_universe && node scripts/auth-cli.mjs status
# Option 2: Install deps in ~/.claude
cd ~/.claude && npm install express
# Option 3: Copy working script
cp ~/projects/ai_universe/scripts/auth-cli.mjs ~/.claude/scripts/
This means the token was created for a different Firebase project than you're trying to use.
# Check which project your token is for
node scripts/auth-cli.mjs status
# Look for "Firebase Project:" line
# Re-login for the correct project
node scripts/auth-cli.mjs login # AI Universe
node scripts/auth-cli.mjs login --project worldarchitecture-ai # WorldAI
lsof -ti:9005 | xargs kill -9
# Auto-refresh (silent)
TOKEN=$(node scripts/auth-cli.mjs token)
# Or manual refresh
node scripts/auth-cli.mjs refresh
# If refresh token expired, re-login
node scripts/auth-cli.mjs login
~/.ai-universe/auth-token-<project-id>.json (separate file per project)| Command | Project | Authentication |
|---|---|---|
/secondo | AI Universe | node scripts/auth-cli.mjs token (default) |
| WorldAI API | WorldAI | node scripts/auth-cli.mjs token --project worldarchitecture-ai |
The source of truth for auth-cli.mjs is ~/projects/ai_universe/scripts/auth-cli.mjs.
To sync to other locations:
# Sync to project .claude/scripts/
cp ~/projects/ai_universe/scripts/auth-cli.mjs .claude/scripts/
# Sync to user ~/.claude/scripts/
cp ~/projects/ai_universe/scripts/auth-cli.mjs ~/.claude/scripts/