aws-deployment
Deep knowledge about deploying applications to AWS (EC2, ECS, S3, CloudFront, Cloud Run).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Deep knowledge about deploying applications to AWS (EC2, ECS, S3, CloudFront, Cloud Run).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Deterministic AI development workflow orchestrator. Manages task boards (.jonggrang/jonggrang-tasks.json), runs 16-phase pipelines (BUGFIX/SMALL/MEDIUM/LARGE), installs lifecycle hooks for Claude Code and OpenCode, and coordinates five specialist roles (Lead/Developer/Reviewer/TestLead/Tester). Use when planning features, executing multi-step development workflows, or orchestrating AI coding agents. Run via npx jonggrang.
16-phase feature orchestration workflow. Runs in the main thread as Kernel Mode. Coordinates the Lead→Developer→Reviewer→TestLead→Tester assembly line.
Protocol for agents to write structured outputs that survive session resets and are findable by the orchestrator.
GitHub workflow automation with the gh CLI — pull requests, issues, releases, the REST/GraphQL API, and safe message escaping. Auth via GH_TOKEN (set in global settings, attached to the sandbox env).
GitLab workflow automation with the glab CLI — merge requests, issues, CI, releases, and safe message escaping. Auth via GITLAB_TOKEN (set in global settings, attached to the sandbox env).
Prevents premature exit and infinite loops. Three mechanisms: Completion Promises, Scratchpads, Loop Detection.
| name | aws-deployment |
| description | Deep knowledge about deploying applications to AWS (EC2, ECS, S3, CloudFront, Cloud Run). |
| type | transform |
| tier | library |
| domain | deploy |
| trigger | when deploying to AWS |
Deploying {{project_name}} ({{project_type}}) to Amazon Web Services (AWS). You will follow a strict 6-phase Deployment Lifecycle Contract.
Execute the following phases in order:
AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, or AWS_PROFILE).aws sts get-caller-identity to confirm authentication.docker build -t <image-name> .npm run build).aws s3 ls s3://<bucket-name> to verify bucket presence. Create it if it doesn't exist.aws ecr get-login-password --region <region> | docker login --username AWS --password-stdin <account-id>.dkr.ecr.<region>.amazonaws.com).aws s3 sync dist/ s3://<bucket-name> --delete. Then invalidate cache: aws cloudfront create-invalidation --distribution-id <id> --paths "/*".aws ecs update-service --cluster <cluster> --service <service> --force-new-deployment).scp to copy files, SSH in, install dependencies, and restart PM2/Systemd.aws logs tail ...) if you encounter errors.aws ecs describe-services to ensure running count matches desired count.