
A comprehensive skill for auditing Lobsterized©™ codebases against sovereignty, security, and architectural standards.
The official Expert CrustCoder©™ skill for Lobsterizing internal codebase DNA. Use when writing, refactoring, or architecting logic within a ClawStack Studios habitat to ensure a hardened, professional signature.
npm/Vite local build pipeline for ClawChives©™. Covers dev server setup, production build, output verification, environment variable behavior, and known failure modes.
# Scuttle-Skill: scuttle-db-backup A Sovereign AgentSkill designed to safely pinch (backup) the SQLite database (`data/shellplate.db`) without interrupting active sessions. ## 🦞 Philosophy - **Sovereign**: Backups are stored locally and timestamped. - **Secure**: Only the `data/` directory is touched. - **Statistically Sound**: Uses simple file-system copy to preserve SQLite integrity for quick restores. ## 🛠️ Usage Execute the backup script via terminal: ```bash bash .crustagent/skills/scu
# Truthpack Updater Skill ## When to Use Activate this skill whenever: - A new route is added to `server/routes/` - A new environment variable is introduced - The project structure or a feature cluster is modified - Security protocols or auth rules are updated ## Instructions 1. **Audit Phase**: Perform a full-codebase scan (`grep` or `list_dir`) to identify changes since the last truthpack sync. 2. **Atomic Updates**: Update the corresponding JSON file in `.crustagent/vibecheck/truthpack/`:
# Feature Development Assistant ## Mission Statement You are an expert full-stack developer who builds complete features from concept to implementation using Desktop Commander's file management capabilities. Your role is to analyze existing codebases, design feature architecture, implement all necessary code, and integrate seamlessly with existing systems. ## Important: Multi-Chat Workflow **Feature development requires multiple chat sessions to avoid context limits and manage implementation c
The canonical ClawChives©™ agent integration skill. Full API reference for autonomous agents (Lobsters©™) to authenticate, manage bookmarks, folders, and integrate with the ClawChive bookmarking system.
Maintain ESLint stability and protect project-specific architectural invariants (Stability Locks) in Lobsterized©™ codebases. Use when (1) Auditing lint/security warnings, (2) Suppressing false positives like "crypto slopsquatting", or (3) Protecting intentional @ts-ignore blocks required for Vite build-time replacement.
The official Scuttle-Skill-Creator©™ for ClawStack Studios. Use when molting new Scuttle-Skills to ensure they adhere to the Sovereign Philosophy (No Passwords, SQLite-First, Granular Claws).
# Security Dominance Meta-Skill ## When to Use Activate this skill for any of the following: - Auditing authentication/authorization flows - Scanning for leaked secrets or ClawKeys - Verifying OWASP compliance - Performing a security sweep before production molting ## Orchestration Logic This skill coordinates the following agents in `.crustagent/vibecheck/agents/`: 1. **`security-sentinel`**: Real-time monitoring of auth gates and key signatures. 2. **`security-auditor`**: Deep scan of the co
# Base Commands npm run dev npm run build # ClawChive Custom Commands npm run start npm run stop
# Scuttle-Skill: scuttle-health-monitor A Sovereign AgentSkill designed to scuttle through the environment and ensure the ShellPlate ports (`5757` and `6262`) are healthy and unobstructed. ## 🦞 Philosophy - **Vibecheck First**: If the ports are dead, the app is dead. - **Statistically Sound**: Checks both network reachability and process existence. - **Fail-Fast**: Reports immediately if port conflicts are detected. ## 🛠️ Usage Execute the vibecheck script via terminal: ```bash bash .crusta
# Blueprint Weaver Meta-Skill ## When to Use Activate this skill immediately AFTER molting a new feature or structural change to ensure the ecosystem maps remain accurate. ## Orchestration Logic This skill coordinates the following agents in `.crustagent/vibecheck/agents/`: 1. **`architecture-oracle`**: Scans the codebase to detect new clusters, routes, or services. 2. **`doc-auditor`**: Verifies that `README.md`, `BLUEPRINT.md`, and `ROADMAP.md` are up to date. 3. **`refactor-advisor`**: Sugg
Docker build pipeline for ClawChives©™. Covers multi-stage Dockerfile requirements, dev vs production compose, post-build verification, and a registry of known failure modes learned from production debugging.
The standard Lobsterized©™ ClawKeys©™ login flow. Upload or paste your identity key — no passwords, no accounts, just your claw.
The standard Lobsterized©™ ClawKeys©™ account creation and identity hatching flow. From landing page to dashboard — zero passwords, full sovereignty.
Master guidelines and strict code rules for writing and maintaining projects under the ClawStack Studios brand.
# Docker Skills — ClawChives©™ > See the full Docker build pipeline skill: > **`project/skills/build-pipeline/SKILL.md`** ## Quick Reference ```bash # Local dev build (builds from source) docker-compose -f docker-compose.dev.yml down docker-compose -f docker-compose.dev.yml build --no-cache docker-compose -f docker-compose.dev.yml up -d # Pull published GHCR image (production) docker-compose up -d # Verify curl -sI http://192.168.1.6:4545/ | grep content-security-policy docker exec clawchiv
# Molt Certification Meta-Skill ## When to Use Activate this skill as the final gate before: - Merging a feature into the main branch - Building the production Docker image - Declaring a task "Done" to Lucas ## Orchestration Logic This skill coordinates the following agents in `.crustagent/vibecheck/agents/`: 1. **`deploy-checker`**: Verifies `docker-compose.yml` and build pipeline health. 2. **`code-auditor`**: Checks for CrustCode©™ naming conventions and structure. 3. **`quality-enforcer`**
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
# Sovereign Stack Recipes This skill contains verified "Stability Locks" for the ShellPlate codebase. Follow these patterns strictly to maintain CrustCode©™ standards and prevent codebase sprawl. ## 🧪 Testing Patterns (Vitest) - **Vertical Audit**: Colocate as `*.test.ts` next to the implementation. - **Backend**: Use `supertest` for route testing. Mock `authMiddleware.requireAuth` for isolation. - **Frontend**: Use `vitest` + `jsdom`. Mock API calls using `vi.mock`. ## 🎨 UI & Components (T
# Truthpack Lookup Skill ## When to Use Activate this skill BEFORE generating any code that: - Creates or modifies API routes - References environment variables - Touches authentication/authorization - Modifies API request/response shapes ## Instructions 1. Read `.crustagent/vibecheck/truthpack/routes.json` for verified API routes 2. Read `.crustagent/vibecheck/truthpack/env.json` for verified environment variables 3. Read `.crustagent/vibecheck/truthpack/auth.json` for verified auth rules 4.
# ClawStack User Session Management Skill **Version:** 1.0 **Status:** Production Ready **Last Updated:** 2026-03-08 --- ## Overview This skill documents the complete user session lifecycle in ClawStack applications. It covers token generation, storage, verification, expiration handling, and cleanup—providing new developers with everything needed to implement session management correctly in any new ClawStack app. **Key Characteristics:** - **Token Format:** `api-` prefix + 32 base62 charact
# Sovereign Error Pattern Analysis This skill defines the "Debugging Reflex" for the ShellPlate environment. Use it to scan for known codebase friction points whenever things move out of "Vibecheck Green" status. ## 🔍 Lobster-Specific Patterns ### 500 Internal Server Errors (The "Lobster Mismatch") - **Field Name Drifts**: Check for `expirationType` (Frontend) vs `expiration` (Legacy Backend). Most common after refactoring. - **ReferenceErrors**: Look for variables renamed in one part of a s
# Sovereign Codebase Navigation This skill provides the "Deep Scan" blueprint of the ShellPlate ecosystem. Use it to orient yourself within the CrustCode©™ architecture. ## 🗺️ Project Blueprint ### 🏗️ Core Infrastructure - `server.js`: Main entry point for the Express backend. - `server/database.js`: SQLite schema initialization and connection management. - `vite.config.ts`: Frontend build and proxy configuration (Proxy: :5757 -> :6262). - `docker-compose.dev.yml`: Development environment c