Skip to main content

remorses/opencode-config

SkillsMP 已收集 remorses/opencode-config 中的 29 个 Skill。打开任一 Skill 可查看来源和详情。

最近记录的来源活动
SkillsMP 收录数据更新
已收集 skills
29
GitHub 星标
42
GitHub Forks
2

这个仓库中的 skills

已展示 29 / 29 个已收集 Skill。

职业分类
未分类
描述

Authentication and authorization with better-auth in Spiceflow and TypeScript apps. Covers server config with Drizzle adapter (Postgres and SQLite), Spiceflow middleware for forwarding auth requests, client setup, session middleware, social and email/password…

原文语言:英语

更新
职业分类
未分类
描述

Search X (Twitter) for posts, users, and threads using the grok CLI's native X search tools. Use when the user wants to find tweets, search for what people are saying about a topic, look up X users, or read full threads. Covers x_keyword_search,…

原文语言:英语

更新
职业分类
未分类
描述

Use to debug why a specific package has duplicate dependencies in a pnpm project's node_modules, which can cause type-checking and bundler errors or duplicate singleton instances such as React contexts. Also use for pnpm workspace dependency updates. NEVER…

原文语言:英语

更新
职业分类
未分类
描述

Cloudflare Workers and Durable Objects conventions for TypeScript projects. Covers wrangler.jsonc configuration, type-safe env via `wrangler types` and `import { env } from 'cloudflare:workers'`, secrets.required for typed secrets, custom_domain for routing,…

原文语言:英语

更新
职业分类
未分类
描述

How to write and send transactional emails (welcome, first-deploy, notifications) from Cloudflare Workers. Covers the preferred personal writing style (no headings, Gmail-default look, dark mode), building HTML with plain template strings, the send_email…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Drizzle ORM conventions and best practices for TypeScript projects. Covers namespace imports, Prisma-like query API, object-style where filters, schema design (ULIDs, cascade deletes, indexes, enums over bools), Zod schema generation, type inference,…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Help users operate the published Composio CLI to find the right tool, connect accounts, inspect schemas, execute tools, subscribe to trigger events with `composio listen`, script workflows with `composio run`, and call authenticated app APIs with `composio…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Rewrite git commit timestamps to shift weekday before-5PM commits to after 5 PM. Use when the user wants to shift, rewrite, or adjust commit times so they appear to be made after working hours. Supports dry-run preview, date range filtering, and deterministic…

原文语言:英语

更新
职业分类
技术写作员
描述

Write and publish X posts for Tommy (@__morse) in his voice. Use when asked to draft, plan, or post a tweet or long-form X post, especially product/launch posts for his projects. Covers voice rules, structure, fact gathering from real code, and publishing via…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Control OBS Studio via CLI using obs-cmd and obs-websocket v5. Covers streaming, recording, window/screen capture, audio control, scene management, and RTMP configuration on macOS. Load this skill when automating OBS, setting up live streams, or controlling…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Identify songs from audio files using ShazamIO. Use when the user asks to recognize a song, identify music from an audio file, find what song is playing, or Shazam an audio clip.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Stripe billing patterns for spiceflow + Drizzle apps. Covers creating products and prices via the Stripe CLI with stable lookup keys, multi-currency USD+EUR pricing, monthly/yearly subscriptions, type-safe Checkout and Billing Portal integration in spiceflow…

原文语言:英语

更新
职业分类
财务和投资分析师
描述

Stripe dispute and chargeback evidence workflow. Covers listing open disputes via CLI, collecting evidence from databases and APIs, generating evidence PDFs with react-pdf, capturing screenshots with Playwriter, rendering email images, and submitting evidence…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Generate professional PDF reports using @react-pdf/renderer in Node.js scripts. Produces clean, document-style output similar to academic papers or business reports. Covers headings, paragraphs, lists, images, page numbers, and the Node API (renderToFile,…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Centralized state management pattern using Zustand vanilla stores. One immutable state atom, functional transitions via setState(), and a single subscribe() for all reactive side effects. Based on Rich Hickey's "Simple Made Easy" principles: prefer values…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Control Jitter (jitter.video) for exporting animations, replacing assets, modifying text, and rendering frames at specific times programmatically via Playwriter.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Generate beautiful code snippet images using ray.so and Playwriter. Builds a URL with code, theme, and settings encoded in the hash fragment, navigates to it in Chrome, and exports the image via Cmd+C clipboard copy. Use this skill when the user asks to…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Tailwind CSS v4 conventions, dark mode with @variant dark, and CSS-based configuration (no tailwind.config.js). ALWAYS load this skill before editing any Tailwind styles, markup, or CSS in a Tailwind project.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Changeset-based versioning workflow. Manually add .changeset/*.md files to describe changes instead of editing CHANGELOG.md directly. Changesets are consumed at publish time to bump versions and generate changelogs. Use this skill when adding changesets or…

原文语言:英语

更新
职业分类
特效艺术家和动画师平面设计师
描述

This skill encodes Emil Kowalski's philosophy on UI polish, component design, animation decisions, and the invisible details that make software feel great.

原文语言:英语

更新
职业分类
网络与计算机系统管理员
描述

Non-interactive wrangler OAuth login using playwriter to automate the Cloudflare consent flow in the user's browser. Use when wrangler auth is expired ("Failed to fetch auth token: 400 Bad Request") or when `wrangler whoami` fails. Delegate to a subagent Task…

原文语言:英语

更新
职业分类
市场调研分析师与营销专员
描述

Read tweets and threads from X (Twitter). Use when the user shares an x.com or twitter.com URL and wants to read a post or thread. Covers single-tweet extraction via oEmbed (no auth, instant) and full thread reading via Playwriter.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Best practices for generating JSON Schema from Zod v4 schemas using z.toJSONSchema(). Covers target versions, metadata registries, override callbacks, io modes, transform handling, regen-check tests, and serving schemas as HTTP routes. Load this skill when…

原文语言:英语

更新
职业分类
秘书和行政助理(法律、医疗和高管除外)
描述

how to send documents to the user boox e ink tablet. use when user mentions boox.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Vercel Deploy Button for one-click project deployment from a Git template. Covers all URL parameters, environment variable pre-filling, redirect callbacks, deploy hooks, demo cards, integrations, and the pattern for associating a deployed GitHub repo with…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Event-sourced application state pattern for TypeScript apps. Prefer bounded event logs plus pure derivation functions over mirrored mutable lifecycle flags. Use when state transitions are driven by events and bugs can be reproduced from a saved event stream.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Reverse-engineer HTTP APIs using Proxyman for macOS. Intercept, record, and export network traffic from CLI tools and apps (Node.js, Python, Ruby, Go, curl). Export as HAR (JSON) and analyze with jq. Use this skill when the user wants to capture, inspect, or…

原文语言:英语

更新
职业分类
软件开发工程师
描述

"Deploy to Cloudflare" button for self-hostable Workers apps. Covers wrangler.jsonc setup, D1 migrations in deploy script, secret descriptions, .dev.vars.example, monorepo handling, custom domains, and the cloudflare field in package.json. Load this skill…

原文语言:英语

更新
职业分类
软件开发工程师
描述

Doppler CLI workflows for secrets management in this workspace. Covers creating projects non-interactively (agent-friendly), renaming the default envs to development/preview/production, uploading secrets, type-safe env access in TypeScript apps, CI…

原文语言:英语

更新
已展示 29 / 29 个已收集 Skill。