Back to Skills

common-tasks

majiayu000
Updated Today
1 views
58
9
58
View on GitHub
Metadesign

About

This skill provides step-by-step guides for routine development tasks like adding constructs and creating packages. Use it when performing common operations such as managing workspace packages or updating project structure. It includes concrete steps for tasks from file creation to documentation updates.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/common-tasks

Copy and paste this command in Claude Code to install this skill

Documentation

Common Tasks

Adding a New Construct to an Existing Package

  1. Create the construct in packages/{package}/src/constructs/
  2. Create types in packages/{package}/src/types/
  3. Export from packages/{package}/src/index.ts
  4. Create test file in packages/{package}/test/
  5. Create example stack in packages/{package}/test/
  6. Update package README

Creating a New Subpackage

  1. Create directory: mkdir -p packages/{name}/src
  2. Create package.json with correct dependencies
  3. Create tsconfig.json extending ../../tsconfig-strict.json
  4. Create src/index.ts with exports
  5. Add to tsconfig.build.json references (in dependency order)
  6. Update root README packages table
  7. Create package README
  8. Create test folder with test files
  9. 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

  1. Create stack class in lib/stacks/{stack-name}-stack.ts
  2. Add environment configuration to bin/environment.ts
  3. 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

  1. New constructs go in subpackages, not the root package
  2. Always use explicit imports, never wildcards
  3. Match CDK versions across all packages
  4. Include environment in resource names to prevent collisions
  5. Gate expensive features to production environments
  6. Export everything from src/index.ts
  7. Create test files for all constructs
  8. Add JSDoc comments to all public APIs
  9. Run lint and format before committing
  10. Follow dependency order when adding packages

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/common-tasks

Related Skills

content-collections

Meta

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.

View skill

creating-opencode-plugins

Meta

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.

View skill

langchain

Meta

LangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.

View skill

Algorithmic Art Generation

Meta

This skill helps developers create algorithmic art using p5.js, focusing on generative art, computational aesthetics, and interactive visualizations. It automatically activates for topics like "generative art" or "p5.js visualization" and guides you through creating unique algorithms with features like seeded randomness, flow fields, and particle systems. Use it when you need to build reproducible, code-driven artistic patterns.

View skill