Skip to main content
firtoz
GitHub クリエイタープロフィール

firtoz

3 件の GitHub リポジトリにある 42 件の収集済み skills をリポジトリ単位で表示します。

収集済み skills
42
リポジトリ
3
更新
2026-07-26
リポジトリエクスプローラー

リポジトリと代表的な skills

multiworker-gotchas
ソフトウェア開発者

Fork and template gotchas (env import, routes, typegen, forms, D1, Turbo, HMR, new DO packages). Use when working on apps/web or durable-objects, or when behavior diverges from this stack’s conventions.

2026-07-26
multiworker-workflow
ソフトウェア開発者

Repo-root commands, typegen and typecheck cadence, lint, deploy, adding packages with bun, and Alchemy app layout. Use at the start of a task, before PR, or when choosing turbo/typegen commands.

2026-07-26
turborepo
ソフトウェア開発者

Turborepo task configuration patterns for monorepo management. Use when configuring turbo.json tasks, setting up task dependencies, managing cache inputs/outputs, or working with cross-package dependencies in the monorepo.

2026-07-26
workers-env-local
ソフトウェア開発者

Alchemy + env files — repo-root `.env.local` (dev), `.env.staging` (staging / PR preview deploys), `.env.production` (prod / CI), optional per-package `.env.local`, and package-local Alchemy apps. Use when adding secrets or non-secret vars (must also update turbo.json globalEnv + deploy workflow env maps), or debugging missing env in local/CI/preview. Never use a plain `.env` file. `.env.example` is human documentation only — no script reads it for all keys.

2026-07-26
routing
ウェブ開発者

React Router v8 routing patterns and environment variable configuration. Use whenever you touch React Router–related code (routes, links, params, loaders, actions, route config, middleware, or env in route context).

2026-07-08
auth-setup
ソフトウェア開発者

Auth worker setup for Better Auth, OAuth, admin bootstrap, and env/secrets. Use when configuring auth for a fork, setting redirect URIs, or debugging auth env.

2026-06-05
binding-hono-client
ソフトウェア開発者

Typed HTTP clients for Cloudflare service bindings — bindingHonoClient, WorkerBindingRegistry, Worker RPC with clientApp, HonoClientApp. Use when calling env.CHATROOM or any WorkerRef/BoundWorker over fetch with @firtoz/hono-fetcher, adding a worker Hono app RPC type, or fixing JsonResponse<any> / missing .delete on binding clients.

2026-06-05
component-organization
ソフトウェア開発者

Component organization patterns for React applications. Use when creating components, organizing files, or structuring routes. ALWAYS keep 1 component per file and routes simple.

2026-06-05
このリポジトリの収集済み skills 16 件中、上位 8 件を表示しています。
cf-durable-object-package
ソフトウェア開発者

Add or change a Durable Object worker package under durable-objects/ (Alchemy, env.d.ts, Hono on the DO). Use when scaffolding with turbo gen durable-object, editing durable-objects/*/alchemy.run.ts, workers/app.ts, or env.d.ts for a DO. Not for web app bindings or cross-worker rpc—see cf-web-alchemy-bindings and cf-worker-rpc-turbo.

2026-05-10
cf-socka-realtime
ソフトウェア開発者

Socka + Durable Object WebSockets—defineSocka, SockaWebSocketDO, useSockaSession, SSR-safe ws URLs, web worker forwarding, live-draft vs commit, canvas/whiteboard acceptance, and pre-merge checks. Use for realtime features, /api/ws, or @firtoz/socka.

2026-05-10
cf-web-alchemy-bindings
ソフトウェア開発者

Wire @internal/web to durable-objects workers—workspace dep, alchemy.run.ts ReactRouter bindings, and env patterns. Use when adding `workspace:*` for a worker, editing apps/web/alchemy.run.ts, or debugging missing worker types after a new package.

2026-05-10
cf-worker-rpc-turbo
ソフトウェア開発者

workers/rpc.ts for WorkerRef or DO RPC types, package exports, cross-worker type imports without Turbo cycles, and root dev/destroy wiring. Use when adding WorkerRef, WorkerStub, workers/rpc.ts, turbo circular dependency warnings, or a new app missing from root bun run dev.

2026-05-10
cf-workers-env-local
ソフトウェア開発者

Alchemy + env files — repo-root `.env.local` (dev), `.env.staging` (staging / PR preview deploys), `.env.production` (prod / CI), optional per-package `.env.local`, and package-local Alchemy apps. Use when adding secrets or non-secret vars or debugging missing env in local dev. Never use a plain `.env` file. `.env.example` is human documentation only — no script reads it for all keys.

2026-05-10
component-organization
ソフトウェア開発者

Component organization patterns for React applications. Use when creating components, organizing files, or structuring routes. ALWAYS keep 1 component per file and routes simple.

2026-05-10
creating-skills
ソフトウェア開発者

Guide for creating new Agent Skills when patterns emerge or improvements are needed. Use when encountering repeated patterns, making the same mistakes, discovering better approaches, or receiving user corrections. Covers keeping each skill small (one topic), when to split SKILL.md or add references/, and line-count heuristics.

2026-05-10
form-submissions
ソフトウェア開発者

Form submission patterns using useDynamicSubmitter, await submitJson, and formAction. Use when implementing forms, handling form submissions, or processing form data in React Router routes.

2026-05-10
このリポジトリの収集済み skills 14 件中、上位 8 件を表示しています。
core-rpc
ソフトウェア開発者

Standard Schema socka contracts (defineSocka), v1 wire envelopes, SockaSession/SockaWebSocketClient, React useSockaSession and SockaSessionProvider, SockaError.

2026-07-07
do-session
ソフトウェア開発者

SockaDoSession and SockaWebSocketDO on Cloudflare Durable Objects—contract, handlers, wireFormat, SockaError; extends websocket-do BaseSession.

2026-07-07
standard-schema
ソフトウェア開発者

Standard Schema v1 for socka contracts and wire validation—Zod, Valibot, or any compatible library; no Zod-only public surface.

2026-07-07
strict-types-no-escape-hatches
ソフトウェア開発者

Enforce strict TypeScript typing without escape hatches. Never use `any`, `as` casts to bypass the compiler, or similar workarounds—find the proper typed solution instead.

2026-07-07
routing
ウェブ開発者

React Router v7 routing patterns and environment variable configuration. Use when adding routes, configuring routing, or setting up environment variables.

2026-04-17
punch-list-execution
ソフトウェア開発者

Read when implementing multi-phase work after a plan exists. Mandatory—mkdir+touch then Write/StrReplace (no heredocs), update the temp punch list at every phase boundary, one item at a time, per-phase tests. Complements punch-list-planning for authors.

2026-03-29
punch-list-planning
ソフトウェア開発者

Read when authoring implementation plans, phased roadmaps, or CreatePlan output for multi-step code work. Ensures the plan hands off a mandatory temp punch list and tells the executor which skill to follow.

2026-03-29
cloudflare-wrangler-typegen
ソフトウェア開発者

Cloudflare Workers/Wrangler workflow for generating typed env bindings. NEVER manually edit worker configuration declaration files; always regenerate them via typegen.

2026-03-27
このリポジトリの収集済み skills 12 件中、上位 8 件を表示しています。
3 件中 3 件のリポジトリを表示
すべてのリポジトリを表示しました