بنقرة واحدة
project-commands
Use common project commands via just
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use common project commands via just
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a new repo-local OpenCode skill scaffold
This skill should be used when the user asks to "create a proposal", "design a report", "make a one-pager", "build a PDF", "create a newsletter", "design slides", "make event materials", "design a flyer", or needs help with print-ready HTML documents. Provides brand configuration, CSS patterns for print layout, and document design best practices.
Write type-safe TypeScript with proper narrowing, inference patterns, and strict mode best practices.
Understand project structure, directories, and checks configuration
Use swimlane for task tracking with proper workflow
Astro web framework patterns for content-driven sites. Covers content collections with Zod schemas and loaders, island architecture with selective hydration directives, view transitions with ClientRouter, server-side and hybrid rendering modes, server islands, Astro DB with astro:db, middleware with onRequest, and framework integrations (React, Svelte, Vue). Use when building content-driven websites, configuring island hydration strategies, setting up view transitions, choosing between static and server rendering, integrating UI framework components, defining content collection schemas, or adding middleware.
| name | project-commands |
| description | Use common project commands via just |
| compatibility | opencode |
Run common project tasks using just. Run just help for a summary.
Build:
just build — compile the projectjust build --watch — compile with watch modeTest:
just test — run testsjust test --watch — run tests with watch modeClean:
just clean — remove build artifactsjust clean --deep — also removes generated files in .schemas/Format:
just format — format code in-placejust format --check — check formatting without modifyingDoctor:
just doctor — check environment healthjust doctor --fix — auto-fix environment issuesStatic:
just static — run static checks including formatjust static --fix — format and auto-fixUse this when you need to run build, test, format, or other common project tasks.