Back to skills
SkillHub ClubShip Full StackFull Stack
openwork-core
Core context and guardrails for OpenWork native app
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
11,962
Hot score
99
Updated
March 20, 2026
Overall rating
C4.5
Composite score
4.5
Best-practice grade
A85.2
Install command
npx @skill-hub/cli install different-ai-openwork-openwork-core
Repository
different-ai/openwork
Skill path: .opencode/skill/openwork-core
Core context and guardrails for OpenWork native app
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: different-ai.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install openwork-core into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/different-ai/openwork before adding openwork-core to shared team environments
- Use openwork-core for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: openwork-core description: Core context and guardrails for OpenWork native app --- ## Quick Usage (Already Configured) ### Orientation - Read `AGENTS.md` and `MOTIVATIONS-PHILOSOPHY.md` before changing behavior. - Ensure `vendor/opencode` exists for self-reference. - Use the `tauri-solidjs` skill for stack-specific guidance. ### Update the OpenCode mirror ```bash git -C vendor/opencode pull --ff-only ``` ### Development workflow ```bash pnpm tauri dev # Desktop development pnpm tauri ios dev # iOS development pnpm tauri android dev # Android development # Or run directly in the desktop package: pnpm -C packages/desktop tauri dev ``` ## OpenCode Integration ### Spawn OpenCode CLI ```bash opencode -p "your prompt" -f json -q ``` ### Read OpenCode database ``` ~/.opencode/opencode.db # SQLite database ``` ### Key tables - `sessions` — Task runs - `messages` — Chat messages and tool calls - `history` — File change tracking ## Common Gotchas - OpenWork must stay within OpenCode's tool surface; avoid inventing new capabilities. - Always expose plans, permissions, and progress for non-technical users. - Use Tauri commands for all system access (file, shell, database). - Keep UI at 60fps; avoid blocking the main thread. - Mobile builds require platform-specific setup (Xcode, Android Studio). ## UI Principles - **Slick and fluid**: animations, transitions, micro-interactions. - **Mobile-first**: touch targets, gestures, adaptive layouts. - **Transparency**: show plans, steps, and tool calls. - **Progressive disclosure**: hide advanced controls until needed. ## First-Time Setup (If Not Configured) ### Clone the OpenCode mirror ```bash git clone https://github.com/anomalyco/opencode vendor/opencode ``` ### Initialize Tauri project ```bash pnpm create tauri-app . --template solid-ts ``` ### Add mobile targets ```bash pnpm tauri ios init pnpm tauri android init ``` ## Common Gotchas - OpenWork must stay within OpenCode’s tool surface; avoid inventing new capabilities. - Always expose plans, permissions, and progress for non-technical users. ## First-Time Setup (If Not Configured) ### Clone the OpenCode mirror ```bash git clone https://github.com/anomalyco/opencode vendor/opencode ```