Reference

Commands

24 slash-command workflows, all namespaced under /tl-telar:. Expand a card for an example and a link to its source.

Codex usage. In Codex, install from zekiyugnak/telar-framework and invoke Telar through @tl-telar or bundled skill names such as $create-app, $review-plan, and $orchestrate. The slash-command names below are the Claude Code form.

Build & Features 5

/tl-telar:create-app

command

Create a new cross-platform mobile application with requirements gathering, brainstorming, architecture, navigation, state management, and CI/CD setup.

/tl-telar:create-app [app description]

/tl-telar:add-feature

command

Add a new feature to an existing mobile application with requirements check, codebase exploration, brainstorming, planning, implementation, and review.

/tl-telar:add-feature [feature description]

/tl-telar:migrate-app

command

Migrate a native iOS/Android app to cross-platform React Native or Flutter.

/tl-telar:migrate-app [migration details]

/tl-telar:upgrade-deps

command

Safely upgrade mobile app dependencies with compatibility checks and testing.

/tl-telar:upgrade-deps [options]

/tl-telar:design-system

command

Create a complete mobile design system with tokens, DESIGN.md, theme providers, and accessibility validation.

/tl-telar:design-system [source]

Review & Quality 3

/tl-telar:review-code

command

Mobile-specific code review with two-stage review gates, platform conventions, and priority-ranked findings.

/tl-telar:review-code [file or directory]

/tl-telar:review-plan

command

Adversarial review of an implementation plan with 3 fresh-instance reviewers. PASS means fit to execute; FAIL means blocking defects. Max 3 iterations then human escalation.

/tl-telar:review-plan [--latest | --plan-file <path>] [--iteration N]

/tl-telar:review-design

command

6-reviewer collaborative gate on a design doc. APPROVED iff all 6 (PM/Architect/Designer/Security-Design/CTO/Mobile-Platform) approve. Max 3 iterations then escalation.

/tl-telar:review-design [--latest | --design-file <path>]

Audits 3

/tl-telar:audit-security

command

Comprehensive security audit covering OWASP mobile top 10 with P1/P2/P3 priority ranking and evidence-based findings.

/tl-telar:audit-security [scope] [--quick]

/tl-telar:audit-accessibility

command

Comprehensive accessibility audit with automated scanning, semantic analysis, and priority-ranked findings.

/tl-telar:audit-accessibility [scope]

/tl-telar:optimize-perf

command

Performance optimization workflow with profiling, quick wins, and deep optimization.

/tl-telar:optimize-perf [area]

Testing 3

/tl-telar:test-app

command

Comprehensive testing workflow including unit, integration, E2E, and device testing.

/tl-telar:test-app [scope]

/tl-telar:setup-e2e

command

Set up an end-to-end testing framework with CI integration.

/tl-telar:setup-e2e [framework]

/tl-telar:setup-web-e2e

command

Scaffold a Supabase/Playwright E2E harness for a Refine/TanStack web app (Arrange/Act patterns).

/tl-telar:setup-web-e2e [app-path]

Release & Deploy 3

/tl-telar:release-app

command

Full release workflow with pre-release checks, builds, store submission, and monitoring.

/tl-telar:release-app [platform]

/tl-telar:setup-cicd

command

Configure a CI/CD pipeline for a mobile app with build, test, and deploy automation.

/tl-telar:setup-cicd [platform]

/tl-telar:setup-ota

command

Configure over-the-air updates with CodePush, Expo Updates, or Shorebird.

/tl-telar:setup-ota [provider]

Orchestration 3

orchestrate is the entry point — it drives the whole pipeline (gates → parallel Work Unit execution → final review) from one command. setup-orchestration enables it once per project; resume recovers an interrupted run. The plan/design gates (Review & Quality) and the knowledge loop (Knowledge & Tools) plug into the same workflow. See Orchestration → how the commands wire together.

/tl-telar:orchestrate

command

End-to-end orchestrated execution: plan, plan review (3 reviewers), WU decomposition, then a continuous-frontier loop that runs independent Work Units in parallel (bounded by execution.max_parallel_wus), final review, COMMIT-READY emit. Honors your git policy (no auto-commit).

/tl-telar:orchestrate <task> | --epic <path> | --plan-file <path>

/tl-telar:resume

command

Explicit recovery from an in-progress orchestrated plan. Loads the 3 state files, primes the KB, and asks you to confirm the resume position.

/tl-telar:resume

/tl-telar:setup-orchestration

command

Interactive setup that detects the framework (RN/Expo/Flutter), writes a framework-aware thresholds file, creates the .tl-telar/ skeleton, and idempotently appends a hygiene block to .gitignore.

/tl-telar:setup-orchestration

Knowledge & Tools 4

/tl-telar:prime

command

Load relevant knowledge-base facts into the current context (5-category retrieval).

/tl-telar:prime [--files <glob>] [--keywords <words>] [--work-type <type>]

/tl-telar:self-reflect

command

Capture durable learnings from recent PRs + the current conversation + an optional config audit. User-approval gate on every candidate. Writes to .tl-telar/knowledge/*.jsonl.

/tl-telar:self-reflect [<days>]

/tl-telar:external-tools-health

command

Reports real-time health of the Codex and Gemini adapters (Phase β, opt-in).

/tl-telar:external-tools-health

/tl-telar:update-requirement

command

Manage requirement changes mid-project with impact analysis and cascade updates across REQUIREMENTS.md, PLAN.md, and PROGRESS.md.

/tl-telar:update-requirement [F-x|UI-x] [change description]