L» Luna Pipes

Lexicon

358 entries. The standard library of Luna Pipes, sorted alphabetically within 47 categories. Hover any headword for its call signature; follow "see also" for cross-references.

Notation.

verb
callable skill that produces output
operator
composes two stages of a pipe
aux
shortcut form of a verb
primitive
built into the runtime; not user-defined

Implementation status.

stable
agent wired, body fleshed out, runnable today, 149 verbs
beta
agent wired, body still thin, expect rough edges, 41 verbs
alias
shortcut for a canonical verb in another category, 136 aliases
planned
spec exists, agent does not, not yet runnable, 32 verbs

ai

32

agent

/agent/ alias aux

Shortcut: One verb to drive the agent toolchain, build / eval / deploy. Auto-routes by whats on disk -> /ll-agent

/agent

ll-agent, agent-build, agent-call

reads network writes repo

aux. shortcut for /ll-agent.

agent-build

/agent-build/ alias aux

Shortcut: Scaffold a full production AI agent (planner + RAG + MCP + verifier + guardrails + approvals + OTel + eval harness) -> /ll-agent-build

/agent-build

ll-agent-build, agent, agent-call

reads repo writes repo

aux. shortcut for /ll-agent-build.

agent-call

/agent-call/ alias aux

Shortcut: Invoke a built agent as a Luna Pipes verb. Pipe input in, structured trace + result out -> /ll-agent-call

/agent-call

ll-agent-call, agent, agent-build

writes repo

aux. shortcut for /ll-agent-call.

agent-deploy

/agent-deploy/ alias aux

Shortcut: Deploy a scaffolded agent to CF Workers, AWS Lambda, Cloud Run, k8s, Docker Compose, or Fly. Refuses to ship if eval hasnt passed -> /ll-agent-deploy

/agent-deploy

ll-agent-deploy, agent, agent-build

reads network

aux. shortcut for /ll-agent-deploy.

agent-eval

/agent-eval/ alias aux

Shortcut: Golden tests + regression for an AI agent. Scores completion, tool-call efficiency, cost, latency, hallucination rate -> /ll-agent-eval

/agent-eval

ll-agent-eval, agent, agent-build

reads network

aux. shortcut for /ll-agent-eval.

agent-swarm

/agent-swarm/ alias aux

Shortcut: Race N agent variants in parallel git worktrees, pick the best by consensus / verifier / cheapest -> /ll-agent-swarm

/agent-swarm

ll-agent-swarm, agent, agent-build

aux. shortcut for /ll-agent-swarm.

chain

/chain/ alias aux

Shortcut: Chain multiple agents together -> /ll-agent-chain

/chain

ll-agent-chain, agent, agent-build

aux. shortcut for /ll-agent-chain.

lam

/lam/ alias aux

Shortcut: Goal-driven autonomous actions -> /ll-lam

/lam

ll-lam, agent, agent-build

aux. shortcut for /ll-lam.

ll-agent

/ll-agent/ beta verb

One verb to drive the agent toolchain. Routes to /ll-agent-build, /ll-agent-eval, /ll-agent-deploy based on the subcommand. Default - if `path` exists and has agent.json, runs eval+deploy; else builds

/ll-agent

agent, agent-build

reads network writes repo

ll-agent-build

/ll-agent-build/ stable verb

Scaffold a full production AI agent with planner + executor + RAG + memory + MCP tool layer + verifier + guardrails + human-in-the-loop + audit log + OpenTelemetry. Implements the autonomy-levels arch

/ll-agent-build

agent, agent-build

reads repo,network writes repo

ll-agent-call

/ll-agent-call/ stable verb

Call an agent (built by /ll-agent-build) as a Luna Pipes verb. Streams the agents trace back into the pipe so downstream stages can react to its output. Lets agents be composed like any other verb, pi

/ll-agent-call

agent, agent-build

reads repo,network writes repo

ll-agent-chain

/ll-agent-chain/ stable verb

Chain multiple agents together, RAG + Nexa + OpenHands + LAM in custom pipelines

/ll-agent-chain

agent, agent-build

reads repo,network writes repo

ll-agent-deploy

/ll-agent-deploy/ stable verb

Deploy an agent scaffolded by /ll-agent-build to Cloudflare Workers, AWS Lambda, Google Cloud Run, Kubernetes, or Docker Compose. Provisions managed dependencies (Postgres, Redis, vector store) per th

/ll-agent-deploy

agent, agent-build

reads repo,network writes repo

ll-agent-eval

/ll-agent-eval/ stable verb

Run an agents golden test suite, score task completion / tool-call efficiency / cost / latency / hallucination rate. Pipes through /ll-no-bluf to verify the agent isnt claiming work it didnt do. Requi

/ll-agent-eval

agent, agent-build

reads network writes repo

ll-agent-swarm

/ll-agent-swarm/ stable verb

Spawn N variants of an agent in isolated git worktrees, run them in parallel on the same input, then pick the best result by consensus, by verifier score, or by lowest cost. Built on /ll-swarm. Use fo

/ll-agent-swarm

agent, agent-build

reads repo writes repo

ll-lam

/ll-lam/ stable verb

Action-driven AI, combine RAG understanding with autonomous code actions across the full stack

/ll-lam

agent, agent-build

reads repo,network writes repo

ll-nexa

/ll-nexa/ stable verb

Nexa-powered semantic code analysis, AI review, bug detection, architecture recommendations

/ll-nexa

agent, agent-build

reads repo writes repo

ll-openhands

/ll-openhands/ stable verb

Autonomous AI coding agent, delegate complex tasks to OpenHands for autonomous implementation

/ll-openhands

agent, agent-build

reads repo,network writes repo

ll-smart-search

/ll-smart-search/ beta verb

Multi-engine search, combines RAG, Nexa embeddings, and grep for the best code search results

/ll-smart-search

agent, agent-build

reads repo,network

ll-swarm-blackboard

/ll-swarm-blackboard/ stable verb

Scaffold a Blackboard-pattern swarm, every agent reads and writes a typed shared case file (Postgres-backed) instead of passing chat history. Implements pattern §4.5 from blog/swarm-of-agents.md. Use

/ll-swarm-blackboard

agent, agent-build

reads repo,network writes repo

ll-swarm-debate

/ll-swarm-debate/ stable verb

Scaffold a Debate/Review/Verifier-pattern swarm, one agent proposes, a critic challenges, a verifier validates evidence and safety before the final answer. Implements pattern §4.4 from blog/swarm-of-a

/ll-swarm-debate

agent, agent-build

reads repo writes repo

ll-swarm-supervisor

/ll-swarm-supervisor/ stable verb

Scaffold a Supervisor/Manager-pattern swarm, supervisor agent picks the next specialist, specialists return artifacts, verifier gates the final output, executor runs deterministic approved actions onl

/ll-swarm-supervisor

agent, agent-build

reads repo,network writes repo

ll-swarm-vote

/ll-swarm-vote/ stable verb

Scaffold a democratic agent swarm with evidence-weighted voting. Three rounds (independent answers, peer review, vote-with-evidence), aggregation by agent weight × confidence × evidence quality (penal

/ll-swarm-vote

agent, agent-build

reads repo,network writes repo

ll-vision

/ll-vision/ stable verb

Screenshot-to-code and UI analysis, analyze designs, compare implementations, detect regressions

/ll-vision

agent, agent-build

reads repo,network writes repo

nexa

/nexa/ alias aux

Shortcut: Nexa-powered semantic code analysis -> /ll-nexa

/nexa

ll-nexa, agent, agent-build

reads repo

aux. shortcut for /ll-nexa.

oh

/oh/ alias aux

Shortcut: Delegate to OpenHands autonomous agent -> /ll-openhands

/oh

ll-openhands, agent, agent-build

aux. shortcut for /ll-openhands.

search

/search/ alias aux

Shortcut: Multi-engine code search -> /ll-smart-search

/search

ll-smart-search, agent, agent-build

reads repo

aux. shortcut for /ll-smart-search.

swarm-blackboard

/swarm-blackboard/ alias aux

Shortcut: Scaffold a blackboard-pattern swarm, typed shared case file in Postgres with row-level perms -> /ll-swarm-blackboard

/swarm-blackboard

ll-swarm-blackboard, agent, agent-build

reads repo writes repo

aux. shortcut for /ll-swarm-blackboard.

swarm-debate

/swarm-debate/ alias aux

Shortcut: Scaffold a primary + critic + verifier debate swarm, recommended for fintech / security / billing -> /ll-swarm-debate

/swarm-debate

ll-swarm-debate, agent, agent-build

aux. shortcut for /ll-swarm-debate.

swarm-supervisor

/swarm-supervisor/ alias aux

Shortcut: Scaffold a supervisor/manager-pattern multi-agent swarm, safest production pattern -> /ll-swarm-supervisor

/swarm-supervisor

ll-swarm-supervisor, agent, agent-build

writes repo

aux. shortcut for /ll-swarm-supervisor.

swarm-vote

/swarm-vote/ alias aux

Shortcut: Evidence-weighted democratic swarm, independent answers, peer review, vote-with-evidence, verifier veto -> /ll-swarm-vote

/swarm-vote

ll-swarm-vote, agent, agent-build

reads repo

aux. shortcut for /ll-swarm-vote.

vision

/vision/ alias aux

Shortcut: Screenshot-to-code and UI analysis -> /ll-vision

/vision

ll-vision, agent, agent-build

aux. shortcut for /ll-vision.

analysis

9

ll-boost-org

/ll-boost-org/ stable verb

Scan a GitHub org/users repos, find cross-repo synergies, and map open-source tools to boost the entire portfolio

/ll-boost-org

ll-boost-project, ll-git-insights

reads repo,network writes repo secrets: github_token

ll-boost-project

/ll-boost-project/ stable verb

Analyze any project and generate an integration plan using open-source tools from GitHub

/ll-boost-project

ll-boost-org, ll-git-insights

reads repo,network writes repo

ll-git-insights

/ll-git-insights/ stable verb

Repository analytics and visualization, commit patterns, contributor stats, code churn, bus factor

/ll-git-insights

ll-boost-org, ll-boost-project

reads repo,network writes repo

ll-leverage

/ll-leverage/ stable verb

Scan open-source repos, extract reusable patterns/features, and generate integration plans for your project

/ll-leverage

ll-boost-org, ll-boost-project

reads repo,network writes repo secrets: github_token

ll-postlaunch

/ll-postlaunch/ stable verb

Analyze launch metrics and provide recommendations for improvement

/ll-postlaunch

ll-boost-org, ll-boost-project

reads repo,network writes repo

ll-requirements

/ll-requirements/ stable verb

Analyze the project codebase and generate comprehensive requirements document

/ll-requirements

ll-boost-org, ll-boost-project

reads repo writes repo

ll-site-audit

/ll-site-audit/ stable verb

Brutal full-stack website audit, product clarity, UX, security, conversion, trust, accessibility, performance, and marketability

/ll-site-audit

ll-boost-org, ll-boost-project

reads repo,network writes repo

req

/req/ beta verb

Shortcut: Analyze codebase and generate requirements → /luna-requirements

/req

ll-boost-org, ll-boost-project

writes repo

retro

/retro/ beta verb

Shortcut: Analyze launch metrics and recommend improvements → /luna-postlaunch

/retro

ll-boost-org, ll-boost-project

reads repo,network

authentication

2

auth

/auth/ alias aux

Shortcut: Build Auth.js authentication system -> /ll-auth

/auth

ll-auth

reads network writes repo

aux. shortcut for /ll-auth.

ll-auth

/ll-auth/ stable verb

Build complete Auth.js authentication with social providers, setup guides, and LinkedIn company page

/ll-auth

auth

reads network writes repo

automation

2

heal

/heal/ alias aux

Shortcut: Test, screenshot, auto-fix in a loop until healthy -> /ll-heal

/heal

ll-heal

reads network writes repo

aux. shortcut for /ll-heal.

ll-heal

/ll-heal/ stable verb

Continuously test, screenshot, detect issues, and auto-fix your app in a loop until healthy

/ll-heal

heal

reads repo,network writes repo

branding

2

brand

/brand/ alias aux

Shortcut: Generate brand identity from codebase -> /ll-brand

/brand

ll-brand

writes repo

aux. shortcut for /ll-brand.

ll-brand

/ll-brand/ stable verb

Generate complete brand identity from codebase, colors, logo, vision, and style guide

/ll-brand

brand

reads repo writes repo

cloudflare

2

cf-allow-bots

/cf-allow-bots/ alias aux

Shortcut: Disable Bot Fight Mode + add WAF allow-rule for 21 AI/search bots on any Cloudflare zone -> /ll-cf-allow-bots

/cf-allow-bots

ll-cf-allow-bots

reads repo,network

aux. shortcut for /ll-cf-allow-bots.

ll-cf-allow-bots

/ll-cf-allow-bots/ stable verb

Configure any Cloudflare zone to allow verified AI crawlers (GPTBot, ClaudeBot, PerplexityBot, etc.) and search bots (Googlebot, Bingbot, Applebot). Disables Bot Fight Mode and creates a WAF skip-rule

/ll-cf-allow-bots

cf-allow-bots

reads repo,network writes repo secrets: cloudflare_token

community

2

challenge

/challenge/ alias aux

Shortcut: Coding challenges with AI judging -> /ll-challenge

/challenge

ll-challenge

aux. shortcut for /ll-challenge.

ll-challenge

/ll-challenge/ planned verb

Timed coding challenges with AI judging, earn credits, climb leaderboards

/ll-challenge

challenge

reads network writes repo

config

1

cfg

/cfg/ planned verb

Shortcut: Configure Luna plugin settings → /luna-config

/cfg

reads network writes repo

configuration

3

config-rules

/config-rules/ alias aux

Shortcut: Define persistent project rules -> /ll-config-rules

/config-rules

ll-config-rules, ll-config

writes repo

aux. shortcut for /ll-config-rules.

ll-config

/ll-config/ stub verb

Configure Luna plugin to connect with Claude Agent Platform

/ll-config

config-rules, ll-config-rules

reads repo,network writes repo secrets: anthropic_key

ll-config-rules

/ll-config-rules/ stable verb

Define persistent project rules that auto-apply to every Luna session, pipe, and agent

/ll-config-rules

config-rules, ll-config

reads repo,network writes repo

content

2

ll-curb

/ll-curb/ stable verb

Transform marketing copy into Curb Your Enthusiasm-style content, awkward, honest, slightly aggressive developer humor

/ll-curb

ll-ghost

reads repo,network writes repo

ll-ghost

/ll-ghost/ stable verb

AI content generation, blog posts, docs, changelogs, social posts, emails, landing pages from your codebase context

/ll-ghost

ll-curb

reads network writes repo

creation

4

ll-api

/ll-api/ stable verb

Generate a complete API from a description, routes, validation, auth, tests, docs, deployment config

/ll-api

ll-clone, ll-idea

reads repo,network writes repo

ll-clone

/ll-clone/ stable verb

Analyze any app/website and generate a complete clone with your own design system and improvements

/ll-clone

ll-api, ll-idea

reads network writes repo

ll-idea

/ll-idea/ stable verb

Transform a product idea into a full spec, architecture, design system, and implementation plan in one command

/ll-idea

ll-api, ll-clone

reads repo,network writes repo

ll-native

/ll-native/ stable verb

Generate native mobile (iOS/Android) or desktop (macOS/Windows/Linux) apps from web code or description

/ll-native

ll-api, ll-clone

reads network writes repo

creative

12

ll-3d

/ll-3d/ stable verb

Generate 3D models and visualizations, app architecture in 3D, component flowcharts, data flow animations, product mockups

/ll-3d

ll-3d-mesh, ll-flow-record

reads network writes repo

ll-3d-mesh

/ll-3d-mesh/ stable verb

Generate 3D meshes from text descriptions using LLaMA-Mesh, text-to-3D for marketing heroes, product visuals, and icons

/ll-3d-mesh

ll-3d, ll-flow-record

reads network writes repo

ll-flow-record

/ll-flow-record/ stable verb

Record browser flows as demo videos, navigate any site, capture screenshots + video, generate AI narration

/ll-flow-record

ll-3d, ll-3d-mesh

reads network writes repo

ll-gamify

/ll-gamify/ stable verb

Turn your codebase into games, code quizzes, team leaderboards, achievement systems, interactive tutorials, escape rooms

/ll-gamify

ll-3d, ll-3d-mesh

writes repo

ll-heygen

/ll-heygen/ stable verb

Transform any webapp into HeyGen-style professional dark UI, design tokens, components, layouts, flows, and AI avatar video generation

/ll-heygen

ll-3d, ll-3d-mesh

reads repo,network writes repo

ll-imagine

/ll-imagine/ stable verb

AI image and visual generation, product screenshots, marketing assets, social cards, diagrams, 3D models, brand assets

/ll-imagine

ll-3d, ll-3d-mesh

reads network writes repo

ll-landing

/ll-landing/ stable verb

Generate a HeyGen-quality marketing landing page for any product, rotating 3D hero, social proof counters, logo carousel, feature tabs, testimonials, FAQ, mega footer

/ll-landing

ll-3d, ll-3d-mesh

reads repo,network writes repo

ll-present

/ll-present/ stable verb

Auto-generate presentations, PowerPoint, Google Slides, Figma decks, pitch decks, sprint reviews, feature showcases

/ll-present

ll-3d, ll-3d-mesh

reads repo,network writes repo

ll-record

/ll-record/ stable verb

Auto-generate demo videos of your features, screen recording, AI narration, background music, editing, and publishing

/ll-record

ll-3d, ll-3d-mesh

reads repo,network writes repo

ll-sing

/ll-sing/ stable verb

Generate songs and soundtracks about your code, product, or any topic, with Suno AI, ElevenLabs, and fal.ai

/ll-sing

ll-3d, ll-3d-mesh

reads repo,network writes repo

ll-video

/ll-video/ stable verb

AI video generation, product trailers, explainer videos, social clips, avatar presentations from text or screenshots

/ll-video

ll-3d, ll-3d-mesh

reads network writes repo

ll-voice

/ll-voice/ stable verb

Local voice synthesis using Voicebox, open-source ElevenLabs alternative with voice cloning, 23 languages, 5 TTS engines

/ll-voice

ll-3d, ll-3d-mesh

reads network writes repo secrets: openai_key

database

6

ll-mongo-doctor

/ll-mongo-doctor/ beta verb

Diagnose MongoDB usage via mongoeye (index/coverage), profile-collection analysis, and Luna heuristic layer for unbounded find(), missing indexes, and schema drift.

/ll-mongo-doctor

ll-migrate, ll-postgres-doctor

reads repo

ll-postgres-doctor

/ll-postgres-doctor/ beta verb

Diagnose PostgreSQL schemas and queries via sqlfluff (SQL lint), pg_stat_statements analysis, missing-index detection, and Luna heuristic layer for unbounded queries, lock contention patterns, and mig

/ll-postgres-doctor

ll-migrate, ll-mongo-doctor

reads repo writes repo

migrate

/migrate/ alias aux

Shortcut: Generate database migrations -> /ll-migrate

/migrate

ll-migrate, ll-mongo-doctor

writes repo

aux. shortcut for /ll-migrate.

mongo-doctor

/mongo-doctor/ alias aux

Shortcut: MongoDB doctor, profile analysis, missing indexes, schema drift -> /ll-mongo-doctor

/mongo-doctor

ll-mongo-doctor, ll-migrate

aux. shortcut for /ll-mongo-doctor.

debugging

3

fix

/fix/ alias aux

Shortcut: Systematic bug fix workflow -> /ll-fix

/fix

ll-fix, ll-debug

writes repo

aux. shortcut for /ll-fix.

ll-debug

/ll-debug/ stable verb

Systematic debugging, reproduce, hypothesize, instrument, test, narrow down with persistent state

/ll-debug

fix, ll-fix

reads repo,network writes repo

ll-fix

/ll-fix/ stable verb

Systematic bug fix, reproduce, failing test, bisect, fix, verify, regression test

/ll-fix

fix, ll-debug

reads repo writes repo

deployment

20

ai-index

/ai-index/ alias aux

Shortcut: Generate llms.txt, ai-plugin.json, MCP discovery files for AI agents -> /ll-ai-index

/ai-index

ll-ai-index, cf, devto

reads repo writes repo

aux. shortcut for /ll-ai-index.

cf

/cf/ beta verb

Shortcut: Automated Cloudflare setup and deploy → /luna-cloudflare-auto

/cf

ai-index, devto

reads network

devto

/devto/ alias aux

Shortcut: Write & publish Dev.to articles with comedy styles (Curb, Seinfeld, Office, Silicon Valley) -> /ll-devto-publish

/devto

ll-devto-publish, ai-index, cf

reads network writes repo

aux. shortcut for /ll-devto-publish.

dock

/dock/ beta verb

Shortcut: Containerize your app → /luna-dockerize

/dock

ai-index, cf

writes repo

go-viral

/go-viral/ alias aux

Shortcut: Complete AI-first product launch, SEO + AI discovery + MCP registry + organic content + awesome lists -> /ll-go-viral

/go-viral

ll-go-viral, ai-index, cf

reads repo,network writes repo

aux. shortcut for /ll-go-viral.

ll-ai-index

/ll-ai-index/ stable verb

Generate llms.txt, ai-plugin.json, and MCP discovery files to make AI agents find and recommend your product

/ll-ai-index

ai-index, cf

reads repo,network writes repo

ll-deploy

/ll-deploy/ stable verb

Deploy application to staging and production environments

/ll-deploy

ai-index, cf

reads repo,network writes repo

ll-devto-publish

/ll-devto-publish/ stable verb

Write and publish Dev.to articles about any project, with comedy styles (Curb, Seinfeld, The Office, Silicon Valley) or straight technical. Auto-publishes via API.

/ll-devto-publish

ai-index, cf

reads network writes repo

ll-go-viral

/ll-go-viral/ stable verb

Complete AI-first product launch, technical SEO + AI discovery files + MCP registry + organic content + awesome lists + search engine promotion. One command to make every AI agent recommend your produ

/ll-go-viral

ai-index, cf

reads repo,network writes repo

ll-hig

/ll-hig/ draft verb

## Command Overview

/ll-hig

ai-index, cf

reads repo,network writes repo

ll-launch

/ll-launch/ stable verb

Full product launch sequence, deploy, monitor, announce, track metrics, auto-rollback if issues

/ll-launch

ai-index, cf

reads network writes repo

ll-mcp-publish

/ll-mcp-publish/ stable verb

Publish your MCP server to Official Registry, Smithery, Glama, and mcp.so, generate server.json, validate, and submit

/ll-mcp-publish

ai-index, cf

reads repo,network writes repo secrets: github_token

ll-organic-promote

/ll-organic-promote/ stable verb

Full organic promotion, write Dev.to article, Product Hunt launch, HN post, Reddit posts, awesome list PRs, AlternativeTo listing, Stack Overflow answers. Make AI agents recommend your product to user

/ll-organic-promote

ai-index, cf

reads repo,network writes repo

ll-promote

/ll-promote/ stable verb

Full AI agent promotion, generate llms.txt, publish to MCP registries, SEO index, GPT Actions, make AI agents recommend your product

/ll-promote

ai-index, cf

reads repo,network writes repo secrets: github_token

ll-rollback

/ll-rollback/ beta verb

Generate rollback procedures, down migrations, feature flags, canary config

/ll-rollback

ai-index, cf

reads network writes repo

ll-shortcuts

/ll-shortcuts/ draft verb

## Command Overview

/ll-shortcuts

ai-index, cf

reads repo,network writes repo

mcp-publish

/mcp-publish/ alias aux

Shortcut: Publish MCP server to Official Registry, Smithery, Glama -> /ll-mcp-publish

/mcp-publish

ll-mcp-publish, ai-index, cf

reads network writes repo

aux. shortcut for /ll-mcp-publish.

organic-promote

/organic-promote/ alias aux

Shortcut: Write articles, submit to awesome lists, Product Hunt, HN, Reddit, make AI agents find you -> /ll-organic-promote

/organic-promote

ll-organic-promote, ai-index, cf

reads repo writes repo

aux. shortcut for /ll-organic-promote.

promote

/promote/ alias aux

Shortcut: Full AI agent promotion, llms.txt, MCP registries, SEO, GPT Actions -> /ll-promote

/promote

ll-promote, ai-index, cf

reads repo,network writes repo

aux. shortcut for /ll-promote.

ship

/ship/ beta verb

Shortcut: Deploy to staging and production → /luna-deploy

/ship

ai-index, cf

reads network writes repo

design

16

3d-scene

/3d-scene/ alias aux

Shortcut: WebGL hero scene with R3F + Drei, perf-budgeted, mobile-safe, Spline option -> /ll-3d-scene

/3d-scene

ll-3d-scene, boutique, des

aux. shortcut for /ll-3d-scene.

boutique

/boutique/ alias aux

Shortcut: Award-ready editorial site with smooth scroll, GSAP, kinetic type, custom cursor -> /ll-boutique

/boutique

ll-boutique, 3d-scene, des

reads repo

aux. shortcut for /ll-boutique.

des

/des/ beta verb

Shortcut: Transform requirements into technical design → /luna-design

/des

3d-scene, boutique

reads network

desktop-tauri

/desktop-tauri/ alias aux

Shortcut: Tauri 2.0 + shadcn desktop scaffold with Apple HIG compliance -> /ll-desktop-tauri

/desktop-tauri

ll-desktop-tauri, 3d-scene, boutique

aux. shortcut for /ll-desktop-tauri.

hig

/hig/ beta verb

Shortcut: Apple Human Interface Guidelines compliance check → /luna-hig

/hig

3d-scene, boutique

reads repo

ll-3d-scene

/ll-3d-scene/ stable verb

Generate WebGL hero scenes with React Three Fiber + Drei, performance-budgeted, mobile-friendly, with Spline integration option, instanced meshes, and DPR-aware rendering.

/ll-3d-scene

3d-scene, boutique

reads repo,network writes repo

ll-boutique

/ll-boutique/ stable verb

Generate award-winning editorial landing pages, Lenis smooth scroll, GSAP ScrollTrigger choreography, variable-font kinetic typography, custom cursor with magnetic hover, View Transitions, dark editor

/ll-boutique

3d-scene, boutique

reads repo,network writes repo

ll-design

/ll-design/ stable verb

Transform requirements into comprehensive technical design specification

/ll-design

3d-scene, boutique

reads repo,network writes repo

ll-desktop-tauri

/ll-desktop-tauri/ stable verb

Generate a production Tauri 2.0 + shadcn/ui desktop app scaffold with Apple HIG compliance, native menus, dark/light, code-signed deploy pipeline.

/ll-desktop-tauri

3d-scene, boutique

reads network writes repo

ll-figma

/ll-figma/ stable verb

Pull Figma designs and generate pixel-perfect responsive components with your stack, design tokens, and HIG compliance

/ll-figma

3d-scene, boutique

reads repo,network writes repo

ll-hld

/ll-hld/ planned verb

Generate a high-level design document from existing code, architecture, components, data flow, deployment

/ll-hld

3d-scene, boutique

reads repo writes repo

ll-motion

/ll-motion/ stable verb

Production motion design system, Framer Motion + GSAP + Lottie + Rive, spring presets, choreography hooks, page transitions, reduced-motion fallbacks, all in a typed, reusable layer.

/ll-motion

3d-scene, boutique

reads repo,network writes repo

ll-tokens

/ll-tokens/ stable verb

Multi-brand design token engine, Style Dictionary v4 source of truth that emits CSS vars, Tailwind config, Figma Variables, iOS/Android tokens, with light/dark/contrast variants.

/ll-tokens

3d-scene, boutique

reads network writes repo secrets: figma_token

motion

/motion/ alias aux

Shortcut: Production motion design system, Framer + GSAP + Lottie + Rive, typed, reduced-motion safe -> /ll-motion

/motion

ll-motion, 3d-scene, boutique

reads repo writes repo

aux. shortcut for /ll-motion.

tokens

/tokens/ alias aux

Shortcut: Multi-brand design token engine, Style Dictionary, CSS vars, Tailwind, Figma, iOS, Android -> /ll-tokens

/tokens

ll-tokens, 3d-scene, boutique

reads network writes repo

aux. shortcut for /ll-tokens.

ui

/ui/ beta verb

Shortcut: Convert UI to Apple HIG + modern design → /luna-ui-convert

/ui

3d-scene, boutique

development

2

ll-api-client

/ll-api-client/ stable verb

Generate typed API client SDK from routes or OpenAPI spec

/ll-api-client

ll-i18n

reads network writes repo

ll-i18n

/ll-i18n/ stable verb

Set up i18n, extract strings, generate translation keys, configure i18n library, RTL support

/ll-i18n

ll-api-client

reads repo writes repo

devops

8

k8s-doctor

/k8s-doctor/ alias aux

Shortcut: Kubernetes doctor, kube-linter, kubeval, polaris, trivy k8s -> /ll-k8s-doctor

/k8s-doctor

ll-k8s-doctor, docker-doctor, ll-ci

aux. shortcut for /ll-k8s-doctor.

ll-ci

/ll-ci/ stable verb

Generate CI/CD pipeline, GitHub Actions or GitLab CI with lint, test, build, deploy stages

/ll-ci

docker-doctor, k8s-doctor

reads repo,network writes repo

ll-docker-doctor

/ll-docker-doctor/ beta verb

Diagnose Dockerfiles and built images via hadolint (Dockerfile lint), dive (image layer analysis), trivy (image CVEs), dockle (CIS Docker benchmark), plus Luna heuristic layer for build-cache layout,

/ll-docker-doctor

docker-doctor, k8s-doctor

reads repo writes repo

ll-env

/ll-env/ beta verb

Validate .env files, generate .env.example, detect missing vars, per-environment configs

/ll-env

docker-doctor, k8s-doctor

reads repo writes repo

ll-k8s-doctor

/ll-k8s-doctor/ beta verb

Diagnose Kubernetes manifests + (optionally) a live cluster via kube-linter, kubeval, kube-score, polaris, trivy k8s, plus Luna heuristic layer for pod security, RBAC over-grant, and CVE exposure incl

/ll-k8s-doctor

docker-doctor, k8s-doctor

reads repo,network writes repo

ll-terraform-doctor

/ll-terraform-doctor/ beta verb

Diagnose Terraform / OpenTofu via tflint, tfsec, checkov, terrascan, plus Luna heuristic layer for state drift, over-permissive IAM, and missing tags.

/ll-terraform-doctor

docker-doctor, k8s-doctor

reads repo writes repo

documentation

11

ll-changelog

/ll-changelog/ stable verb

Auto-generate changelog from git history with semantic versioning

/ll-changelog

docs, ll-claude-instructions

reads repo,network writes repo

ll-claude-instructions

/ll-claude-instructions/ planned verb

Generate a comprehensive instructions file for the Claude Chrome browser extension from your codebase

/ll-claude-instructions

docs, ll-changelog

reads repo,network writes repo

ll-codemap

/ll-codemap/ planned verb

Build a visual code structure map with file tree, exports, imports, and dependency graph

/ll-codemap

docs, ll-changelog

reads repo,network writes repo

ll-docs

/ll-docs/ stable verb

Create comprehensive user, developer, and API documentation

/ll-docs

docs, ll-changelog

reads repo,network writes repo

ll-flowdocs

/ll-flowdocs/ planned verb

Document all user flows, interaction patterns, and skills with Mermaid diagrams

/ll-flowdocs

docs, ll-changelog

reads network writes repo

ll-onboarding

/ll-onboarding/ planned verb

Generate an onboarding guide, setup steps, first-use walkthrough, progressive disclosure, role-based paths

/ll-onboarding

docs, ll-changelog

writes repo

ll-readme-sync

/ll-readme-sync/ beta verb

Regenerate README.md (and optionally the website skills/lexicon pages) from the actual contents of commands/, agents/, and skills/. Keeps counters honest, builds the command index, and prevents docs f

/ll-readme-sync

docs, ll-changelog

reads repo,network writes repo

ll-routemap

/ll-routemap/ planned verb

Build a complete routing and navigation map with pages, params, guards, and auth matrix

/ll-routemap

docs, ll-changelog

reads repo,network writes repo

ll-storybook

/ll-storybook/ stable verb

Generate Storybook stories for all components with variants, args, and docs

/ll-storybook

docs, ll-changelog

reads repo writes repo

readme-sync

/readme-sync/ alias aux

Shortcut: Regenerate README.md + website skills data from commands/, agents/, skills/ -> /ll-readme-sync

/readme-sync

ll-readme-sync, docs, ll-changelog

reads repo

aux. shortcut for /ll-readme-sync.

ecosystem

2

ll-marketplace

/ll-marketplace/ planned verb

Skill marketplace, browse, publish, install, and review community skills

/ll-marketplace

marketplace

reads repo,network

marketplace

/marketplace/ alias aux

Shortcut: Skill marketplace -> /ll-marketplace

/marketplace

ll-marketplace

reads repo,network

aux. shortcut for /ll-marketplace.

implementation

2

go

/go/ beta verb

Shortcut: Implement next task from the plan → /luna-execute

/go

ll-execute

ll-execute

/ll-execute/ stable verb

Implement tasks from the implementation plan in order

/ll-execute

go

reads repo writes repo

infrastructure

4

ll-boost-finsavvy

/ll-boost-finsavvy/ stable verb

Analyze and boost any FinsavvyAI portfolio project using shared libraries, Claw Gateway, and cross-project synergies

/ll-boost-finsavvy

ll-connect-infra, ll-email-routing

reads repo,network writes repo

ll-connect-infra

/ll-connect-infra/ stable verb

Connect any project to your shared private infrastructure, Claw Gateway, ReasoningBank, Smart Router, Agent Booster, Credits

/ll-connect-infra

ll-boost-finsavvy, ll-email-routing

reads repo,network

ll-email-routing

/ll-email-routing/ stable verb

Set up free email forwarding for any domain using Cloudflare Email Routing, no email hosting needed

/ll-email-routing

ll-boost-finsavvy, ll-connect-infra

reads repo,network secrets: cloudflare_token

ll-local-llm

/ll-local-llm/ stable verb

Run AI agents locally using llamafile, zero cost, fully offline, OpenAI-compatible API

/ll-local-llm

ll-boost-finsavvy, ll-connect-infra

reads network writes repo secrets: openai_key

integrations

2

ll-webhook-setup

/ll-webhook-setup/ stable verb

Generate copy-paste content and step-by-step guides for setting up signed-webhook bridges (Slack, Discord, WhatsApp Cloud, Telegram, Email, Jira) in each providers developer console, apps, signing sec

/ll-webhook-setup

webhook-setup

reads repo,network writes repo secrets: cloudflare_token, slack_token

webhook-setup

/webhook-setup/ alias aux

Shortcut: Generate copy-paste webhook bridge setup guides (Slack, Discord, WhatsApp, Telegram, Email, Jira) -> /ll-webhook-setup

/webhook-setup

ll-webhook-setup

reads network writes repo secrets: slack_token

aux. shortcut for /ll-webhook-setup.

intelligence

3

ll-learn

/ll-learn/ stable verb

Self-learning memory, Luna gets smarter with every task, remembering patterns, preferences, and successful approaches

/ll-learn

ll-time-machine, q

reads repo,network writes repo

ll-time-machine

/ll-time-machine/ stable verb

Travel through your projects history, replay any state, compare any two points in time, understand why anything changed

/ll-time-machine

ll-learn, q

writes repo

q

/q/ beta verb

Shortcut: Semantic code search with natural language → /luna-rag

/q

ll-learn, ll-time-machine

reads repo

maintenance

1

ll-zen

/ll-zen/ stable verb

One-command project health restoration, fix ALL issues across code, tests, security, a11y, performance, and deploy

/ll-zen

reads repo,network writes repo

meta

3

cmds

/cmds/ stub verb

Show all Luna shortcuts and their full command mappings

/cmds

ll-skill-radar, skill-radar

reads repo,network writes repo

ll-skill-radar

/ll-skill-radar/ stable verb

Scan curated awesome-claude-code lists weekly, dedupe against installed luna-agents skills, surface high-value new skills with stars/recency/relevance score.

/ll-skill-radar

cmds, skill-radar

reads repo,network writes repo

skill-radar

/skill-radar/ alias aux

Shortcut: Scan awesome-claude-code lists, surface high-value new skills -> /ll-skill-radar

/skill-radar

ll-skill-radar, cmds

reads repo,network

aux. shortcut for /ll-skill-radar.

monetization

2

ll-ls-products

/ll-ls-products/ stub verb

Scan project and generate an HTML page with LemonSqueezy product definitions, descriptions, pricing tiers, features, and AI image prompts for hero, icon, social card, thumbnail, and variant cards

/ll-ls-products

ll-money

reads repo,network writes repo

ll-money

/ll-money/ stable verb

Full monetization setup, billing integration, pricing page, subscription management, revenue dashboards, dunning recovery

/ll-money

ll-ls-products

reads network

monitoring

1

ll-pulse

/ll-pulse/ stable verb

Real-time health pulse across your entire stack, code, infra, users, revenue, team velocity, in one view

/ll-pulse

reads repo,network writes repo

operations

2

ll-monitor

/ll-monitor/ stable verb

Set up comprehensive monitoring, dashboards, and alerts

/ll-monitor

watch

reads repo,network writes repo

watch

/watch/ beta verb

Shortcut: Set up monitoring and alerts → /luna-monitor

/watch

ll-monitor

optimization

4

agent-boost

/agent-boost/ alias aux

Shortcut: WASM-based simple task executor -> /ll-agent-boost

/agent-boost

ll-agent-boost, context-pack

aux. shortcut for /ll-agent-boost.

ll-agent-boost

/ll-agent-boost/ planned verb

WASM-based simple task executor, skips LLM calls entirely for deterministic code transforms at sub-millisecond speed

/ll-agent-boost

agent-boost, context-pack

reads repo,network writes repo

ll-context-pack

/ll-context-pack/ planned verb

Precision context delivery, analyzes tasks and selects only relevant files to reduce token usage by 40-60%

/ll-context-pack

agent-boost, context-pack

reads repo,network writes repo

orchestration

5

ll-autopilot

/ll-autopilot/ stable verb

Fully autonomous development, give Luna a goal, it plans, codes, tests, reviews, fixes, and ships without intervention

/ll-autopilot

ll-multi-agent, ll-smart-route

reads repo,network writes repo

ll-multi-agent

/ll-multi-agent/ stable verb

Run multiple AI agents in parallel on isolated git worktrees, race or consensus strategies, inspired by Agent of Empires

/ll-multi-agent

ll-autopilot, ll-smart-route

reads network writes repo

ll-smart-route

/ll-smart-route/ planned verb

Self-learning agent routing, tracks success rates per agent+model combo, routes to cheapest viable model automatically

/ll-smart-route

ll-autopilot, ll-multi-agent

reads repo,network writes repo

ll-swarm

/ll-swarm/ stable verb

Spawn a coordinated multi-agent swarm, parallel coding, reviewing, testing, and deploying with consensus

/ll-swarm

ll-autopilot, ll-multi-agent

reads repo,network writes repo

performance

5

cache-tune

/cache-tune/ alias aux

Shortcut: Anthropic prompt cache optimizer, TTL tuning, keepalive, savings report -> /ll-cache-tune

/cache-tune

ll-cache-tune, context-compress

reads repo,network

aux. shortcut for /ll-cache-tune.

ll-cache-tune

/ll-cache-tune/ stable verb

Anthropic prompt-cache optimizer, switch TTL between 5m and 1h mid-conversation, install keepalive proxy, measure cache hit rate, cut token cost.

/ll-cache-tune

cache-tune, context-compress

reads repo,network writes repo secrets: anthropic_key

ll-context-compress

/ll-context-compress/ stable verb

Deterministic context compressor for LLM prompts, slot-based pre-prompt pruning that cuts tokens 30-60% with zero ML inference, stacks on top of prompt caching.

/ll-context-compress

cache-tune, context-compress

reads repo,network writes repo

ll-perf-trace

/ll-perf-trace/ stable verb

Performance tracing with Perfetto, capture Chrome traces, analyze Core Web Vitals, SQL-based trace querying

/ll-perf-trace

cache-tune, context-compress

reads repo,network writes repo

planning

5

ll-plan

/ll-plan/ stable verb

Break down design into ordered, actionable implementation tasks

/ll-plan

ll-plan-v2, ll-product-map

reads repo writes repo

ll-plan-v2

/ll-plan-v2/ stable verb

Break down design into ordered, actionable implementation tasks with backend integration

/ll-plan-v2

ll-plan, ll-product-map

reads repo,network writes repo secrets: anthropic_key

ll-product-map

/ll-product-map/ planned verb

Visual product planning, hierarchical Product/Workflow/Feature cards with codebase mapping and approval workflows

/ll-product-map

ll-plan, ll-plan-v2

reads repo,network writes repo

plan

/plan/ beta verb

Shortcut: Break design into ordered implementation tasks → /luna-plan

/plan

ll-plan, ll-plan-v2

product

1

ll-onboard-adaptive

/ll-onboard-adaptive/ stable verb

Build an adaptive, persona-driven onboarding flow, asks platform-usage questions, infers persona, generates dynamic step sequence, scaffolds backend (Hono/D1) and frontend (Next.js dashboard)

/ll-onboard-adaptive

reads repo,network writes repo

productivity

1

ll-inbox

/ll-inbox/ stable verb

AI email management, auto-categorize, bulk unsubscribe, draft replies, meeting briefs, and inbox analytics

/ll-inbox

reads repo,network writes repo

publishing

1

ll-publish

/ll-publish/ stable verb

Publish content anywhere, Medium, Product Hunt, Hacker News, Twitter/X, LinkedIn, Dev.to, Reddit, YouTube, Notion, Obsidian

/ll-publish

reads repo,network writes repo

quality

54

backend-doctor

/backend-doctor/ alias aux

Shortcut: Backend-stack dispatcher (Node, Java/Vert.x/Spring, Python, Go, Rust, Ruby, PHP, .NET, Elixir) -> /ll-backend-doctor

/backend-doctor

ll-backend-doctor, assert, django-doctor

aux. shortcut for /ll-backend-doctor.

doctor

/doctor/ alias aux

Shortcut: Framework-aware diagnose + fix; auto-routes to react-doctor / svelte-doctor / zen -> /ll-doctor

/doctor

ll-doctor, assert, backend-doctor

writes repo

aux. shortcut for /ll-doctor.

dotnet-doctor

/dotnet-doctor/ alias aux

Shortcut: .NET / ASP.NET Core doctor, dotnet format, outdated, Roslyn, security-code-scan -> /ll-dotnet-doctor

/dotnet-doctor

ll-dotnet-doctor, assert, backend-doctor

reads repo

aux. shortcut for /ll-dotnet-doctor.

drill

/drill/ alias aux

Shortcut: Adversarial AI/dev bluff drill, score honesty, harden CLAUDE.md, loop -> /ll-drill

/drill

ll-drill, assert, backend-doctor

reads network

aux. shortcut for /ll-drill.

elixir-doctor

/elixir-doctor/ alias aux

Shortcut: Elixir / Phoenix doctor, credo, sobelow, mix audit, dialyxir -> /ll-elixir-doctor

/elixir-doctor

ll-elixir-doctor, assert, backend-doctor

reads repo

aux. shortcut for /ll-elixir-doctor.

er

/er/ alias aux

Shortcut: Critical-severity triage in under 5 minutes, Is anything on fire? -> /ll-er

/er

ll-er, assert, backend-doctor

aux. shortcut for /ll-er.

fastapi-doctor

/fastapi-doctor/ alias aux

Shortcut: FastAPI / Starlette doctor, async blocking, DI cycles, response leaks -> /ll-fastapi-doctor

/fastapi-doctor

ll-fastapi-doctor, assert, backend-doctor

aux. shortcut for /ll-fastapi-doctor.

go-doctor

/go-doctor/ alias aux

Shortcut: Go doctor, golangci-lint + gosec + govulncheck + goroutine-leak heuristics -> /ll-go-doctor

/go-doctor

ll-go-doctor, assert, backend-doctor

aux. shortcut for /ll-go-doctor.

hospital

/hospital/ alias aux

Shortcut: Run every applicable doctor in parallel, full-stack health sweep -> /ll-hospital

/hospital

ll-hospital, assert, backend-doctor

aux. shortcut for /ll-hospital.

icu

/icu/ alias aux

Shortcut: Production-down recovery loop, sec + perf + heal + zen until green -> /ll-icu

/icu

ll-icu, assert, backend-doctor

aux. shortcut for /ll-icu.

ll-a11y

/ll-a11y/ beta verb

WCAG 2.2 AA/AAA accessibility audit, contrast, keyboard nav, ARIA, screen reader

/ll-a11y

assert, backend-doctor

reads repo,network writes repo

ll-assert

/ll-assert/ stable verb

Validate project constraints, file size, coverage, security, accessibility thresholds

/ll-assert

assert, backend-doctor

ll-backend-doctor

/ll-backend-doctor/ stable verb

Auto-detect the backend stack (Node, Java/Vert.x/Spring, Python/Django/FastAPI, Go, Rust, Ruby/Rails, PHP, .NET, Elixir) and run the matching doctor. Pipes through /ll-no-bluf before opening a PR.

/ll-backend-doctor

assert, backend-doctor

reads network writes repo

ll-deps

/ll-deps/ beta verb

Audit dependencies, outdated packages, vulnerabilities, unused deps, license check, upgrade plan

/ll-deps

assert, backend-doctor

reads repo writes repo

ll-django-doctor

/ll-django-doctor/ stable verb

Diagnose Django projects via `python manage.py check --deploy`, bandit (security), pylint-django, django-extensions, plus Luna heuristic layer for n+1 queries, signal misuse, async-view correctness, a

/ll-django-doctor

assert, backend-doctor

reads repo,network writes repo

ll-doctor

/ll-doctor/ stable verb

Auto-detect the framework (React, Next.js, Svelte, SvelteKit, Vue, Solid, Astro) and route to the right doctor. Falls back to `/ll-zen` for full-stack health if no framework match. Pipe through `/ll-n

/ll-doctor

assert, backend-doctor

writes repo

ll-dotnet-doctor

/ll-dotnet-doctor/ beta verb

Diagnose .NET / ASP.NET Core projects via dotnet format, dotnet-outdated, Roslyn analyzers, security-code-scan, plus Luna heuristic layer for DI scope, EF Core n+1, and middleware ordering.

/ll-dotnet-doctor

assert, backend-doctor

reads repo writes repo

ll-drill

/ll-drill/ stable verb

Adversarial bluff-detection drill, generate temptation scenarios, score AI/dev honesty rate, harden CLAUDE.md anti-bluff guardrails, loop until honesty rate ≥ 95%.

/ll-drill

assert, backend-doctor

reads repo,network writes repo

ll-elixir-doctor

/ll-elixir-doctor/ beta verb

Diagnose Elixir / Phoenix apps via credo, sobelow (security), mix audit, mix dialyzer / dialyxir, plus Luna heuristic layer for GenServer state, supervision tree, and LiveView assigns leakage.

/ll-elixir-doctor

assert, backend-doctor

reads repo writes repo

ll-er

/ll-er/ beta verb

Fast triage. Runs every doctor in `severity_min=critical` + `parallel=true` mode. Skips style, formatting, and medium findings. For is anything on fire right now? checks, under 5 minutes on most repos

/ll-er

assert, backend-doctor

ll-fastapi-doctor

/ll-fastapi-doctor/ stable verb

Diagnose FastAPI / Starlette apps via ruff (lint), bandit (security), mypy (types), openapi-spec-validator (contract), plus Luna heuristic layer for async-route blocking, dependency injection cycles,

/ll-fastapi-doctor

assert, backend-doctor

writes repo

ll-go-doctor

/ll-go-doctor/ stable verb

Diagnose Go services via golangci-lint, staticcheck, gosec, govulncheck, ineffassign, errcheck, plus a Luna heuristic layer for goroutine leaks, context.Background misuse, and missing deadlines. No up

/ll-go-doctor

assert, backend-doctor

reads network writes repo

ll-hospital

/ll-hospital/ stable verb

Runs every relevant doctor in parallel, frontend, backend, infra, data, CVE, across your entire repo. The meta-dispatcher of dispatchers. Use when you want a single command to find every issue worth f

/ll-hospital

assert, backend-doctor

reads repo writes repo

ll-icu

/ll-icu/ beta verb

Production is broken. Runs `/ll-365-secure` + `/ll-perf-trace` + `/ll-heal` + `/ll-zen` in a closed loop until every gate is green or you stop the loop. For incident response, not preventive medicine.

/ll-icu

assert, backend-doctor

reads repo writes repo

ll-no-bluf

/ll-no-bluf/ stable verb

Detect AI bluffing in recent commits and docs, surface fake claims, fix or remove them in a closed-loop cycle until everything verifies real.

/ll-no-bluf

assert, backend-doctor

reads repo writes repo

ll-node-doctor

/ll-node-doctor/ stable verb

Run `npx node-doctor@latest` (real package) plus npm audit, eslint, and Luna heuristic scan against Express / Fastify / Hono / Koa / NestJS / Bun / Deno backends. Composes with /ll-no-bluf for honest

/ll-node-doctor

assert, backend-doctor

reads repo writes repo

ll-perf

/ll-perf/ beta verb

Performance audit, bundle analysis, Core Web Vitals, query optimization, memory leaks

/ll-perf

assert, backend-doctor

reads repo,network writes repo

ll-php-doctor

/ll-php-doctor/ beta verb

Diagnose PHP projects via psalm, phpstan, composer audit, php-cs-fixer, plus Luna heuristic layer for Laravel n+1, Symfony service-container leaks, and SQL builder injection.

/ll-php-doctor

assert, backend-doctor

reads repo,network writes repo

ll-prescribe

/ll-prescribe/ beta verb

Analyse the repo + recent activity (commits, failing CI, open PRs, recent incidents in `.luna/incidents/`) and print a prescription, which doctors to run, in which order, with rationale. Does not exec

/ll-prescribe

assert, backend-doctor

reads repo,network writes repo

ll-rails-doctor

/ll-rails-doctor/ beta verb

Run `npx rails-doctor@latest` (real package) plus brakeman (security), bundler-audit (CVEs), rubocop (lint), and a Luna heuristic layer for n+1, fat-controller, missing strong params, and CSRF gaps.

/ll-rails-doctor

assert, backend-doctor

reads repo writes repo

ll-react-doctor

/ll-react-doctor/ stable verb

Run `npx react-doctor@latest` against the current repo to diagnose security, performance, correctness, accessibility, bundle-size, and architecture issues, then route each finding through `/ll-no-bluf

/ll-react-doctor

assert, backend-doctor

reads network writes repo

ll-refactor

/ll-refactor/ stable verb

Smart refactoring, split files, extract shared logic, rename across codebase, enforce size limits

/ll-refactor

assert, backend-doctor

reads repo writes repo

ll-review

/ll-review/ stable verb

Perform comprehensive code review of implemented features

/ll-review

assert, backend-doctor

reads repo writes repo

ll-rules

/ll-rules/ stable verb

Apply strict coding session rules, 100-line file cap, full test coverage, Playwright e2e for every feature

/ll-rules

assert, backend-doctor

reads network writes repo

ll-rust-doctor

/ll-rust-doctor/ beta verb

Run `npx rust-doctor@latest` (real package) plus cargo clippy, cargo audit, cargo deny, cargo udeps. Luna heuristic layer for async runtime mixing, panic-in-async, and unsafe scope.

/ll-rust-doctor

assert, backend-doctor

reads repo writes repo

ll-spring-doctor

/ll-spring-doctor/ stable verb

Diagnose Spring Boot apps for security (Spring Security mis-config, CSRF, JWT), perf (n+1 queries, missing indexes, thread-pool exhaustion), correctness (transactional boundaries, exception mapping),

/ll-spring-doctor

assert, backend-doctor

reads repo,network writes repo

ll-svelte-doctor

/ll-svelte-doctor/ stable verb

Run `npx svelte-doctor-cli@latest` (or `svelte-doctor` if preferred) against the current repo to diagnose state, effects, performance, security, accessibility, architecture, and dead-code issues, then

/ll-svelte-doctor

assert, backend-doctor

reads repo,network writes repo

ll-vertx-doctor

/ll-vertx-doctor/ stable verb

Diagnose Vert.x (Java / Kotlin) projects for event-loop blocking, codec misuse, cluster manager mis-config, async-handler correctness, and security. Composes existing JVM tooling (SpotBugs, OWASP Depe

/ll-vertx-doctor

assert, backend-doctor

reads repo,network writes repo

no-bluf

/no-bluf/ alias aux

Shortcut: Detect AI bluffing in commits and docs, fix in closed loop -> /ll-no-bluf

/no-bluf

ll-no-bluf, assert, backend-doctor

writes repo

aux. shortcut for /ll-no-bluf.

node-doctor

/node-doctor/ alias aux

Shortcut: Wraps node-doctor + npm audit + eslint for Node backends -> /ll-node-doctor

/node-doctor

ll-node-doctor, assert, backend-doctor

reads repo

aux. shortcut for /ll-node-doctor.

php-doctor

/php-doctor/ alias aux

Shortcut: PHP / Laravel / Symfony doctor, psalm, phpstan, composer audit -> /ll-php-doctor

/php-doctor

ll-php-doctor, assert, backend-doctor

reads repo

aux. shortcut for /ll-php-doctor.

prescribe

/prescribe/ alias aux

Shortcut: Recommend which doctors to run, in what order, based on repo signals -> /ll-prescribe

/prescribe

ll-prescribe, assert, backend-doctor

aux. shortcut for /ll-prescribe.

rails-doctor

/rails-doctor/ alias aux

Shortcut: Wraps rails-doctor + brakeman + bundler-audit + rubocop -> /ll-rails-doctor

/rails-doctor

ll-rails-doctor, assert, backend-doctor

reads repo

aux. shortcut for /ll-rails-doctor.

react-doctor

/react-doctor/ alias aux

Shortcut: Wraps `npx react-doctor@latest`, security, perf, correctness, a11y, bundle-size, architecture -> /ll-react-doctor

/react-doctor

ll-react-doctor, assert, backend-doctor

aux. shortcut for /ll-react-doctor.

refactor

/refactor/ alias aux

Shortcut: Smart refactoring with file splitting -> /ll-refactor

/refactor

ll-refactor, assert, backend-doctor

writes repo

aux. shortcut for /ll-refactor.

rev

/rev/ beta verb

Shortcut: Comprehensive code review → /luna-review

/rev

assert, backend-doctor

reads repo

rules

/rules/ alias aux

Shortcut: Apply strict session rules, 100-line cap, full tests, Playwright e2e -> /ll-rules

/rules

ll-rules, assert, backend-doctor

aux. shortcut for /ll-rules.

svelte-doctor

/svelte-doctor/ alias aux

Shortcut: Wraps `npx svelte-doctor-cli@latest` (or `svelte-doctor`), state, perf, sec, a11y, dead-code -> /ll-svelte-doctor

/svelte-doctor

ll-svelte-doctor, assert, backend-doctor

aux. shortcut for /ll-svelte-doctor.

test

/test/ beta verb

Shortcut: Create test suites and validate → /luna-test

/test

assert, backend-doctor

writes repo

vertx-doctor

/vertx-doctor/ alias aux

Shortcut: Vert.x (Java/Kotlin) doctor, event-loop blocking, codec misuse, cluster config -> /ll-vertx-doctor

/vertx-doctor

ll-vertx-doctor, assert, backend-doctor

aux. shortcut for /ll-vertx-doctor.

review

1

ll-payments

/ll-payments/ planned verb

Review or suggest payment system architecture, providers, webhooks, subscriptions, pricing, security

/ll-payments

reads repo,network writes repo

security

34

cve-doctor

/cve-doctor/ alias aux

Shortcut: Defensive CVE scanner, host + lockfiles + k8s nodes, cross-referenced against NVD/OSV/GHA -> /ll-cve-doctor

/cve-doctor

ll-cve-doctor, cve-triage, export-governance

aux. shortcut for /ll-cve-doctor.

cve-triage

/cve-triage/ alias aux

Shortcut: Defense-only disclosure-triage. Advisory in, upgrade tickets + PRs out across repo / monorepo / GitHub org -> /ll-cve-triage

/cve-triage

ll-cve-triage, cve-doctor, export-governance

reads network

aux. shortcut for /ll-cve-triage.

export-governance

/export-governance/ alias aux

Shortcut: Emit agent manifests for Willow / Backstage / generic IAM / OPA / OpenAPI from a Luna scaffold -> /ll-export-governance

/export-governance

ll-export-governance, cve-doctor, cve-triage

writes repo

aux. shortcut for /ll-export-governance.

ll-365-secure

/ll-365-secure/ stable verb

Apply Microsoft 365 / Azure AD security hardening and BFF session authentication

/ll-365-secure

cve-doctor, cve-triage

reads repo,network writes repo

ll-cloudflare

/ll-cloudflare/ draft verb

## Command Overview

/ll-cloudflare

cve-doctor, cve-triage

reads repo,network writes repo secrets: cloudflare_token

ll-cve-doctor

/ll-cve-doctor/ stable verb

Defensive CVE scanner. Inventories the host (kernel version, libc, container runtime), the repo (lockfiles across npm, pip, go.mod, Cargo.toml, Maven, Gemfile, composer.lock), and (optionally) live K8

/ll-cve-doctor

cve-doctor, cve-triage

reads repo,network writes repo

ll-cve-triage

/ll-cve-triage/ stable verb

Defense-only disclosure-triage workflow. Takes a CVE advisory (ID, URL, or pasted text), parses the affected ecosystems / packages / version ranges / kernel ranges, scans every project in scope (singl

/ll-cve-triage

cve-doctor, cve-triage

reads repo,network writes repo

ll-export-governance

/ll-export-governance/ stable verb

Read a /ll-agent-build scaffold (or a /ll-swarm-supervisor / /ll-swarm-vote scaffold) and emit a governance manifest in the format expected by Willow, Backstage, a generic IAM platform, an OPA bundle,

/ll-export-governance

cve-doctor, cve-triage

reads repo,network writes repo

ll-guard

/ll-guard/ stable verb

Continuous security guardian, SAST, DAST, dependency audit, secret scan, compliance check, threat modeling

/ll-guard

cve-doctor, cve-triage

reads repo,network writes repo

ll-mythos

/ll-mythos/ stable verb

Defensive security layer for AI agents, detects prompt injection in tool outputs, jailbreak attempts, exfiltration patterns, and lethal-trifecta combinations. Hardens CLAUDE.md with immutable mythos p

/ll-mythos

cve-doctor, cve-triage

reads repo,network writes repo secrets: anthropic_key

ll-sec-build

/ll-sec-build/ stable verb

Build-stage supply-chain bundle. Generates SBOM, signs artifacts, produces SLSA provenance.

/ll-sec-build

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-container

/ll-sec-container/ stable verb

Container image vulnerability + best-practice scan via Trivy + Hadolint + Dockle

/ll-sec-container

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-dast

/ll-sec-dast/ stable verb

Dynamic application security testing, runs Nuclei + ZAP baseline against a live URL to find runtime vulns

/ll-sec-dast

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-deploy

/ll-sec-deploy/ beta verb

Pre-deploy gate (~2m). Container scan + IaC scan + signature verification. Last barrier before production.

/ll-sec-deploy

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-deps

/ll-sec-deps/ stable verb

SCA via OSV-Scanner (Google) + license-checker. Catches vulnerable + non-compliant deps across npm/pypi/maven/cargo/go.

/ll-sec-deps

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-fuzz

/ll-sec-fuzz/ stable verb

Coverage-guided fuzzing per language, Jazzer.js (JS/TS), Atheris (Python), go-fuzz / native libFuzzer (Go)

/ll-sec-fuzz

cve-doctor, cve-triage

reads network writes repo

ll-sec-iac

/ll-sec-iac/ stable verb

Infrastructure-as-Code scanning for Terraform, CloudFormation, Kubernetes, Helm, ARM, Bicep, Dockerfile via Checkov + tfsec

/ll-sec-iac

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-lifecycle

/ll-sec-lifecycle/ stable verb

One-shot installer that wires every Luna security command into git hooks, GitHub Actions, and cron. Idempotent.

/ll-sec-lifecycle

cve-doctor, cve-triage

reads network writes repo

ll-sec-pr

/ll-sec-pr/ stable verb

PR/push CI bundle (~30s). Runs SAST + secret-history + dep audit + license check. Posts findings to PR comment.

/ll-sec-pr

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-precommit

/ll-sec-precommit/ stable verb

Fast (<5s) staged-changes scan run by git pre-commit hook. Catches secrets + obvious lint-level security issues before commit.

/ll-sec-precommit

cve-doctor, cve-triage

reads repo

ll-sec-push

/ll-sec-push/ stable verb

Run the entire security lifecycle in one shot. Pre-push umbrella. Fast / Full / CI modes.

/ll-sec-push

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-report

/ll-sec-report/ stable verb

Aggregate all per-tool SARIF/JSON outputs into one human + machine readable summary. Trend over time.

/ll-sec-report

cve-doctor, cve-triage

reads network writes repo

ll-sec-runtime

/ll-sec-runtime/ stable verb

Post-deploy live scan. Runs Nuclei + ZAP baseline against deployed URL. Auto-rolls back on critical findings.

/ll-sec-runtime

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-sast

/ll-sec-sast/ stable verb

Static analysis with Semgrep using OWASP Top 10 + CWE Top 25 + language-specific rulesets

/ll-sec-sast

cve-doctor, cve-triage

reads network writes repo

ll-sec-sbom

/ll-sec-sbom/ stable verb

Generate Software Bill of Materials (CycloneDX + SPDX) via Syft. Pre-req for signing, supply-chain audit, EU CRA / US EO 14028 compliance.

/ll-sec-sbom

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-secrets

/ll-sec-secrets/ stable verb

Detect leaked secrets in source, history, and staged changes using gitleaks + trufflehog (verified)

/ll-sec-secrets

cve-doctor, cve-triage

reads repo,network writes repo

ll-sec-sign

/ll-sec-sign/ stable verb

Keyless signing of binaries, images, and SBOMs via Cosign + Sigstore. Produces verifiable attestations.

/ll-sec-sign

cve-doctor, cve-triage

reads network writes repo

ll-sec-threat-model

/ll-sec-threat-model/ beta verb

STRIDE-based threat model from a YAML system description via Threagile. Generates risk register + data-flow diagrams + mitigation tracking.

/ll-sec-threat-model

cve-doctor, cve-triage

reads network writes repo

ll-sec-watch

/ll-sec-watch/ stable verb

Scheduled daily/weekly sweep. New CVEs in deployed deps, drift in IaC, expired signatures, OSV updates.

/ll-sec-watch

cve-doctor, cve-triage

reads repo,network writes repo

mythos

/mythos/ alias aux

Shortcut: AI security layer, prompt injection / jailbreak / exfil / lethal-trifecta defense -> /ll-mythos

/mythos

ll-mythos, cve-doctor, cve-triage

reads repo,network

aux. shortcut for /ll-mythos.

sec

/sec/ beta verb

Shortcut: OWASP security audit → /luna-365-secure

/sec

cve-doctor, cve-triage

reads repo

seo

2

ll-llm-seo

/ll-llm-seo/ stable verb

Generate a complete AI-discovery + LLM SEO bundle for any project, llms.txt, llms-full.txt, ai-plugin.json, robots.txt, sitemap.xml, _headers (CSP + cache), JSON-LD <head> snippet, and a Cloudflare bo

/ll-llm-seo

llm-seo

reads repo,network writes repo

llm-seo

/llm-seo/ alias aux

Shortcut: Generate llms.txt + ai-plugin.json + robots.txt + sitemap + JSON-LD + Cloudflare bot-allow for any project -> /ll-llm-seo

/llm-seo

ll-llm-seo

reads network writes repo

aux. shortcut for /ll-llm-seo.

strategy

3

ll-audience

/ll-audience/ stable verb

Deep customer intelligence, analyze who uses your app, predict behavior, detect churn, identify upsell opportunities, and generate growth strategies

/ll-audience

ll-compete, ll-persona

reads network writes repo

ll-compete

/ll-compete/ stable verb

Competitive intelligence, analyze any competitors product, tech stack, pricing, features, and generate your advantage plan

/ll-compete

ll-audience, ll-persona

reads network writes repo

ll-persona

/ll-persona/ stable verb

Generate detailed user personas from your apps code, data model, and user flows, with AI avatars, journey maps, and behavioral profiles

/ll-persona

ll-audience, ll-compete

reads repo,network writes repo

team

1

ll-collab

/ll-collab/ stable verb

Team collaboration workflows, standup generation, sprint retros, PR reviews, knowledge sharing, onboarding

/ll-collab

reads repo,network writes repo

testing

17

browser-test

/browser-test/ alias aux

Shortcut: Full browser testing with screenshots and auto-fix -> /ll-browser-test

/browser-test

ll-browser-test, e2e-flow, ll-a11y-scan

reads network writes repo

aux. shortcut for /ll-browser-test.

e2e-flow

/e2e-flow/ alias aux

Shortcut: Auto-generate Playwright E2E tests from routes -> /ll-e2e-flow

/e2e-flow

ll-e2e-flow, browser-test, ll-a11y-scan

reads network writes repo

aux. shortcut for /ll-e2e-flow.

ll-a11y-scan

/ll-a11y-scan/ planned verb

Full WCAG 2.1 compliance scan using accessibility-scanner MCP, axe-core powered, all pages, all viewports

/ll-a11y-scan

browser-test, e2e-flow

reads repo,network writes repo

ll-browser-test

/ll-browser-test/ stable verb

Full browser integration testing, launch app, navigate flows, screenshot, auto-fix failures

/ll-browser-test

browser-test, e2e-flow

reads repo,network writes repo

ll-e2e-flow

/ll-e2e-flow/ stable verb

Auto-generate Playwright E2E tests from your routes and components, login, CRUD, billing, all flows

/ll-e2e-flow

browser-test, e2e-flow

reads repo,network writes repo

ll-e2e-test

/ll-e2e-test/ stub verb

Scan project routes, UI pages, and endpoints to generate a comprehensive browser-based E2E test plan with personas, flows, and status checkboxes

/ll-e2e-test

browser-test, e2e-flow

reads repo,network writes repo secrets: stripe_key

ll-flaky

/ll-flaky/ stable verb

Detect flaky tests by running them under stress, N iterations, failure pattern analysis, timing capture

/ll-flaky

browser-test, e2e-flow

reads repo,network writes repo

ll-gemma4

/ll-gemma4/ draft verb

Set up Google Gemma 4 for free, local AI inference via Ollama. Zero cost, 256K context, multimodal (text+image+audio).

/ll-gemma4

browser-test, e2e-flow

reads network

ll-mock

/ll-mock/ stable verb

Generate realistic test fixtures, API stubs, and factory functions from types/schema

/ll-mock

browser-test, e2e-flow

reads repo,network writes repo

ll-rag-guided

/ll-rag-guided/ draft verb

## 🌟 Luna RAG - Complete Intelligent Code Search

/ll-rag-guided

browser-test, e2e-flow

reads repo,network

ll-test

/ll-test/ stable verb

Create comprehensive test suites and validate against requirements

/ll-test

browser-test, e2e-flow

reads repo,network writes repo

ll-vision-pipeline

/ll-vision-pipeline/ planned verb

Master orchestrator, chains browser-test → visual-qa → visual-diff → a11y-scan → auto-fix loop across all vision MCP servers

/ll-vision-pipeline

browser-test, e2e-flow

reads repo,network writes repo

ll-visual-diff

/ll-visual-diff/ planned verb

Pixel-perfect visual regression testing, compare screenshots against baseline using MCP image-compare server

/ll-visual-diff

browser-test, e2e-flow

reads network writes repo

ll-visual-qa

/ll-visual-qa/ planned verb

Multi-layer visual quality assurance, combines vision AI, pixel diff, accessibility scanning, and OCR across all MCP servers

/ll-visual-qa

browser-test, e2e-flow

reads repo,network writes repo

ll-visual-regression

/ll-visual-regression/ stable verb

Compare screenshots before/after code changes, detect visual regressions across all pages

/ll-visual-regression

browser-test, e2e-flow

reads network writes repo

vr

/vr/ alias aux

Shortcut: Compare screenshots before/after changes -> /ll-visual-regression

/vr

ll-visual-regression, browser-test, e2e-flow

reads network writes repo

aux. shortcut for /ll-visual-regression.

tooling

2

ide

/ide/ alias aux

Shortcut: Scaffold IDE plugins, Cursor, Windsurf, VSCode, JetBrains, Zed, Xcode, Neovim, Emacs, Sublime, Fleet -> /ll-ide-plugins

/ide

ll-ide-plugins

aux. shortcut for /ll-ide-plugins.

ll-ide-plugins

/ll-ide-plugins/ stable verb

Scaffold IDE/editor plugins in parallel, Cursor, Windsurf, Trae, Void, VSCode, all JetBrains IDEs, Zed, Neovim, Xcode, Emacs, Sublime, Fleet, sharing common core

/ll-ide-plugins

ide

reads network writes repo

transformation

1

ll-morph

/ll-morph/ stable verb

Transform any app between platforms, web to mobile, mobile to desktop, React to Vue, Next.js to Nuxt, REST to GraphQL

/ll-morph

reads repo,network writes repo

workflow

10

feature

/feature/ alias aux

Shortcut: Full feature lifecycle until done -> /ll-feature

/feature

ll-feature, ll-parallel

reads repo writes repo

aux. shortcut for /ll-feature.

ll-feature

/ll-feature/ stable verb

Full feature lifecycle, plan, implement, test, review, fix in a loop until complete

/ll-feature

feature, ll-parallel

reads repo,network writes repo

ll-parallel

/ll-parallel/ stable verb

Run multiple agents in parallel, build, lint, test, type-check simultaneously

/ll-parallel

feature, ll-feature

reads repo writes repo

ll-pipe

/ll-pipe/ stable verb

Lunas AI programming language, combine commands with operators, variables, conditions, loops, and workflows

/ll-pipe

feature, ll-feature

reads repo,network writes repo

ll-pr

/ll-pr/ stable verb

Create pull request with summary, test plan, screenshots, linked issues, reviewer assignment

/ll-pr

feature, ll-feature

reads network writes repo

ll-watch-pipe

/ll-watch-pipe/ beta verb

Watch file changes and auto-run Luna pipeline on every change

/ll-watch-pipe

feature, ll-feature

reads repo writes repo

ll-workflow

/ll-workflow/ stable verb

Save, load, list, and share named pipeline workflows

/ll-workflow

feature, ll-feature

reads repo,network writes repo

pipe

/pipe/ alias aux

Shortcut: Lunas AI programming language, compose commands with operators -> /ll-pipe

/pipe

ll-pipe, feature, ll-feature

writes repo

aux. shortcut for /ll-pipe.

pr

/pr/ alias aux

Shortcut: Generate pull request -> /ll-pr

/pr

ll-pr, feature, ll-feature

writes repo

aux. shortcut for /ll-pr.

workflow

/workflow/ alias aux

Shortcut: Save, load, list named pipelines -> /ll-workflow

/workflow

ll-workflow, feature, ll-feature

reads repo

aux. shortcut for /ll-workflow.

Aux. shortcuts

48

Auxiliary forms. Each is a one-token alias for a verb in another chapter; calling the aux is identical to calling the verb. Listed here for completeness; not part of the canonical lexicon count.