Chaac Skills
Knowledge packages that teach AI agents how to build and deploy on Tawa. Install as Claude Code rules or use as Cloud Chaac system prompts.
Artifact Promotion
RuleTawa uses artifact promotion to move builds through environments without rebuilding. Build once in sandbox, promote the same image to UAT, then to production.
Audit Trail on Tawa
Ruleimport { Septor } from '@insureco/septor'
Authentication on Tawa
RuleWithout this, `BIO_CLIENT_ID` and `BIO_CLIENT_SECRET` are never injected. Your service cannot log users in.
Build & Deploy Pipeline
RuleThe iec-builder executes a fixed, ordered pipeline for every `tawa deploy`. Understanding each step — what it does, when it fails hard vs. fails open, and what…
Builder Logs — Redaction, Rotation & Admin API
RuleThe iec-builder runs under PM2 on the builder host and writes structured pino logs to `~/.pm2/logs/iec-builder-out.log` and `-error.log`. Because pino-http…
Building a Tawa PlugIN
Ruletawa init my-plugin # full scaffold tawa sample --api my-plugin # alternative ```
catalog-info.yaml
RuleThe single source of truth for how the builder deploys your service. Every deploy reads this file. The builder generates Dockerfiles, provisions databases,…
Custom Domains
RuleEvery service gets a platform hostname automatically on deploy (`{service}.tawa.pro`, `{service}.sandbox.tawa.pro`, `{service}.uat.tawa.pro`). To put your own…
Custom Domains
CommandHow DNS works on Tawa and how to add custom domains to your service.
Database Backups on Tawa
RuleEvery MongoDB database on the platform is backed up automatically every night, and you can take an on-demand backup of your own service's database any time.…
Databases on Tawa
RuleDeclare databases in `catalog-info.yaml`. The builder provisions connection strings and injects them as environment variables. Your code reads from…
Deploy Anti-Patterns
RuleWhat you must NEVER do when deploying on Tawa, and the correct alternatives.
Gas & Wallet Economics
RuleHow token economics work on Tawa — pod pricing, the deploy gate, gas metering, and wallet management.
Job Queues on Tawa
RuleDeclare queues in `catalog-info.yaml`. iec-queue POSTs jobs to your endpoint. Return `2xx` = complete. Non-2xx = retry.
Koko Data Access — Quickstart
RulePlatform databases (MongoDB, Redis, Neo4j) run inside the Kubernetes cluster and are not reachable from localhost. The `koko` CLI proxies all operations…
Local Development with `tawa dev`
Rule`tawa dev` reads your `catalog-info.yaml`, generates all platform environment variables, and either connects to real databases via SSH tunnels (online mode) or…
MCP Authentication & Bio-ID Identity
RuleJCI-MCP uses Bio-ID as its authorization server. All identity — `bioId`, `orgSlug`, and `roles` — flows from a Bio-ID JWT. That JWT drives which JCI role a…
Next.js on Tawa
RuleNext.js frontend services deployed on Tawa have a critical constraint: **environment variables injected by the platform are only available at runtime, not at…
Object Storage on Tawa
RuleDeclare a bucket in `catalog-info.yaml` (catalog `0.3.0`+). The builder provisions a MinIO bucket with a hard quota, and credentials are injected into your pod…
Passport — Enriched Identity, Branding & Permissions
RuleA Passport is a self-contained identity object that travels with a user across every Tawa service. It carries identity, org branding, and permissions — all…
Passport & Branding
Ruleinterface VaultBranding { // Self-serve (Claimed tier) displayName: string // shown on all surfaces — REQUIRED on first write tagline?: string // "Colorado's…
Querying Org Members and User Access
RuleThree patterns — pick the one that fits your use case:
Scaffold Service
CommandHow to scaffold a new service on Tawa using `tawa sample` templates.
Scheduled Jobs on Tawa
RuleDeclare schedules in `catalog-info.yaml`. iec-cron POSTs to your endpoint on schedule. Return 200 immediately — do slow work asynchronously.
Sending Email and SMS
Ruleimport { RelayClient } from '@insureco/relay'
Service-to-Service Communication
RuleAll inter-service calls on the Tawa platform go through **Janus**. Direct pod-to-pod calls are blocked by NetworkPolicy. This gives the platform a single point…
Tawa Auth — Next.js Bio-ID Integration
CommandThe complete Bio-ID OAuth implementation for Next.js services on Tawa. Use this when building or debugging login flows.
Tawa Platform
RuleThe architecture of the Tawa platform — what services exist, how they connect, and the URLs you need.
Tawa PM — Project Planning with Forgejo
CommandPlan and execute work using Forgejo as the source of truth. No local markdown files to overwrite — everything lives in the repo's milestones and issues.
Troubleshoot Deploy
CommandStep-by-step diagnosis of Tawa deployment failures. Always check the build log first — it contains the most useful information.
Uptime Monitoring — iec-pulse
RuleEvery `tawa deploy` automatically registers an uptime monitor in CheckCle via iec-pulse. No configuration needed — the builder reads your service URL and…
Vault Branding — Org Identity on Every Surface
RuleEvery vault entity has a `profile.branding` record — the single source of truth for how an org appears across all Tawa surfaces. The Passport reads it at mint…
Workflow Pattern — cron + queue + Janus
Ruleiec-cron → POST /internal/cron/{trigger} Your service: fetch pending items, fan out jobs → POST {IEC_QUEUE_URL}/jobs (one per item) iec-queue → POST…
Showing 33 of 33 skills