common-tasks
について
このスキルは、コンストラクトの追加やパッケージの作成など、日常的な開発タスクのステップバイステップガイドを提供します。ワークスペースパッケージの管理やプロジェクト構造の更新など、一般的な操作を行う際にご利用ください。ファイル作成からドキュメント更新に至るまでの具体的な手順が含まれています。
クイックインストール
Claude Code
推奨/plugin add https://github.com/majiayu000/claude-skill-registrygit clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/common-tasksこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Common Tasks
Adding a New Construct to an Existing Package
- Create the construct in
packages/{package}/src/constructs/ - Create types in
packages/{package}/src/types/ - Export from
packages/{package}/src/index.ts - Create test file in
packages/{package}/test/ - Create example stack in
packages/{package}/test/ - Update package README
Creating a New Subpackage
- Create directory:
mkdir -p packages/{name}/src - Create
package.jsonwith correct dependencies - Create
tsconfig.jsonextending../../tsconfig-strict.json - Create
src/index.tswith exports - Add to
tsconfig.build.jsonreferences (in dependency order) - Update root README packages table
- Create package README
- Create test folder with test files
- Create docs folder with documentation
Using Root Package Types
Import shared types from @cdk-constructs/cdk:
import {
EnvironmentConfig,
// Add other shared types as they're created
} from '@cdk-constructs/cdk';
Using Workspace Packages
Import from workspace packages:
import {Account, Region, Environment} from '@cdk-constructs/aws';
import {createCodeArtifact} from '@cdk-constructs/codeartifact';
Adding Integration Test Stack
- Create stack class in
lib/stacks/{stack-name}-stack.ts - Add environment configuration to
bin/environment.ts - Import and instantiate in
bin/app.ts
Formatting Code
# Format all files
npm run format
# Check formatting
npm run format:check
# Format and fix linting
npm run format:fix
Key Reminders
- New constructs go in subpackages, not the root package
- Always use explicit imports, never wildcards
- Match CDK versions across all packages
- Include environment in resource names to prevent collisions
- Gate expensive features to production environments
- Export everything from
src/index.ts - Create test files for all constructs
- Add JSDoc comments to all public APIs
- Run lint and format before committing
- Follow dependency order when adding packages
GitHub リポジトリ
関連スキル
content-collections
メタThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
creating-opencode-plugins
メタThis skill provides the structure and API specifications for creating OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It offers implementation patterns for JavaScript/TypeScript modules that intercept and extend the AI assistant's lifecycle. Use it when you need to build event-driven plugins for monitoring, custom handling, or extending OpenCode's capabilities.
polymarket
メタThis skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.
cloudflare-turnstile
メタThis skill provides comprehensive guidance for implementing Cloudflare Turnstile as a CAPTCHA-alternative bot protection system. It covers integration for forms, login pages, API endpoints, and frameworks like React/Next.js/Hono, while handling invisible challenges that maintain user experience. Use it when migrating from reCAPTCHA, debugging error codes, or implementing token validation and E2E tests.
