소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 11일 15:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill deploy명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
| name | deploy |
| description | Deploy CDK stacks and content to AWS environments Use when this capability is needed. |
| metadata | {"author":"finlaysonstudio"} |
How to deploy CDK infrastructure and application content to AWS.
| Environment | Hostnames | AWS Account |
|---|---|---|
| sandbox | sandbox.jaypie.net, garden-api.sandbox.jaypie.net, garden.sandbox.jaypie.net | Finlayson Studio Sandbox (562880556342) |
| development | development.jaypie.net, garden-api.development.jaypie.net, garden.development.jaypie.net | Finlayson Studio Development (211125635435) |
| production | jaypie.net, garden-api.jaypie.net, garden.jaypie.net | Finlayson Studio Development (211125635435) |
| Stack ID | Description |
|---|---|
JaypieDocumentation | Documentation site (S3 + CloudFront) |
JaypieGardenData | Shared DynamoDB table |
JaypieGardenApi | Garden streaming API (Express Lambda) |
JaypieGardenNextjs | Garden Next.js frontend |
Deployments trigger automatically via GitHub Actions. Push or tag to trigger.
| Branch Pattern | Deploys To | Lint/Test Required |
|---|---|---|
feat/*, fix/*, branch/*, claude/*, sandbox/* | sandbox | No |
main, development/* | development | Yes |
| (no branch trigger) | production | (tag only) |
Path filter: Only triggers when workspaces/**, .github/actions/**, or .github/workflows/deploy-*.yml change.
| Tag Pattern | Deploys To | Lint/Test Required |
|---|---|---|
sandbox-* | sandbox | No |
development-* | development | Yes |
stack-documentation-* | documentation only | No |
Use the Deploy Stacks (Manual) workflow via GitHub Actions UI or CLI:
# Deploy all stacks to sandbox
gh workflow run deploy-stacks.yml -f environment=sandbox -f stacks=all
# Deploy specific stack(s)
gh workflow run deploy-stacks.yml -f environment=sandbox -f stacks="JaypieGardenData"
gh workflow run deploy-stacks.yml -f environment=sandbox -f stacks="JaypieGardenData JaypieGardenApi JaypieGardenNextjs"
# Deploy to production
gh workflow run deploy-stacks.yml -f environment=production -f stacks=all
# Deploy to sandbox now
git tag sandbox-$(date +%s) && git push origin sandbox-$(date +%s)
# Deploy to development
git tag development-$(date +%s) && git push origin development-$(date +%s)
Local deploys go to sandbox only. Requires AWS SSO login and .env configuration.
AWS SSO Login (ask user before running — correct browser must be in foreground):
aws sso login --profile Developer-562880556342
.env file at repo root with at minimum:
AWS_PROFILE=Developer-562880556342
# Deploy individual stacks (sandbox only)
npm run deploy:documentation:sandbox
npm run deploy:garden-api:sandbox
npm run deploy:garden-ui:sandbox
For stacks without scripts (e.g., JaypieGardenData) or custom scenarios:
# Set environment
export AWS_PROFILE=Developer-562880556342
export AWS_REGION=us-east-1
export CDK_DEFAULT_ACCOUNT=$(aws sts get-caller-identity --profile $AWS_PROFILE --query 'Account' --output text)
export CDK_DEFAULT_REGION=$AWS_REGION
export CDK_ENV_HOSTED_ZONE=jaypie.net
export PROJECT_ENV=sandbox
export PROJECT_KEY=jaypie
export PROJECT_NONCE=local
export PROJECT_SPONSOR=finlaysonstudio
export PROJECT_VERSION=$(node -p "require('./package.json').version")
# Build and deploy
npm run build
cd workspaces/cdk
npx cdk deploy JaypieGardenData --profile $AWS_PROFILE --require-approval never -c stacks=JaypieGardenData
| Variable | Default | Description |
|---|---|---|
AWS_PROFILE | (required) | AWS SSO profile name |
AWS_REGION | us-east-1 | AWS region |
CDK_DEFAULT_ACCOUNT | (from STS) | AWS account ID |
CDK_DEFAULT_REGION | us-east-1 | CDK target region |
CDK_ENV_HOSTED_ZONE | jaypie.net | Route53 hosted zone |
PROJECT_ENV | sandbox | Environment identifier |
PROJECT_KEY | jaypie | Project identifier |
PROJECT_NONCE | local | Unique resource suffix |
PROJECT_SPONSOR | finlaysonstudio | Organization name |
# List recent workflow runs
gh run list --limit 5
# Watch a running workflow
gh run watch
# View a specific run
gh run view <run-id>
# View failed run logs
gh run view <run-id> --log-failed
Use mcp__jaypie__aws with the appropriate profile:
aws("cloudformation_describe_stack", { stackName: "JaypieGardenData", profile: "Developer-562880556342" })
aws("dynamodb_describe_table", { tableName: "<table-name>", profile: "Developer-562880556342" })
aws("lambda_list_functions", { functionNamePrefix: "garden", profile: "Developer-562880556342" })
Deployed stacks follow this pattern:
cdk-${PROJECT_SPONSOR}-${PROJECT_KEY}-${PROJECT_ENV}-${PROJECT_NONCE}-${resource}
Example: cdk-finlaysonstudio-jaypie-sandbox-local-garden-data
gh run watch or check GitHub Actionsgh run view <run-id> --log-failed
aws sso login --profile Developer-562880556342
Ask the user first — they need the Finlayson Studio browser in the foreground.
PROJECT_ENV is not set correctly. Ensure the GitHub environment has the right PROJECT_ENV value.
The stack hasn't been deployed yet. Deploy it via GitHub Actions or locally.
A required environment variable is missing. Check all PROJECT_* and CDK_* variables.
JaypieGardenData must be deployed before JaypieGardenApi or JaypieGardenNextjs if they consume the shared table. Deploy data stack first, then consumer stacks.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.