aws-lambda-deploy

Deploy AWS Lambda functions using repository-provided deploy scripts.

291|38|Updated Mar 16, 2026
One-click install
npx skills add https://github.com/J-Pster/Psters_AI_Workflow --skill aws-lambda-deploy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: aws-lambda-deploy
Source: https://github.com/J-Pster/Psters_AI_Workflow/tree/main/plugins/psters-ai-workflow/skills/deploy-lambda
Command: npx skills add https://github.com/J-Pster/Psters_AI_Workflow --skill aws-lambda-deploy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Lambdas are deployed only through the project's guaranteed deploy scripts using AWS CLI. No CDK/IAC deployment, reducing drift and manual errors.

Core Features & Use Cases

  • Enforce using repository-provided deploy scripts for repeatable Lambda deployments.
  • Detect missing guaranteed deploy scripts and guide creation of defaults.
  • Document AWS SSO login prerequisite for successful deployments.

Quick Start

Deploy a Lambda using the repository's guaranteed deploy script for the target function.

Frequently Asked Questions about aws-lambda-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy an AWS Lambda function using a guaranteed deploy script?▼

To deploy an AWS Lambda function using a guaranteed deploy script, run the repository's script located in the scripts/ directory targeting your specific function. This enforces repeatable deployments via AWS CLI and requires you to be logged into AWS SSO.

What should I do if my Lambda repository is missing guaranteed deploy scripts?▼

If your Lambda repository is missing guaranteed deploy scripts, the deployment process detects the absence of the scripts/ directory and safely guides you through creating default scripts. This fallback ensures you can still establish scripted deployments without manual CLI guessing.

Can I use CDK or IAC to deploy AWS Lambda functions with this approach?▼

You cannot use CDK or IAC deployments with this approach. It explicitly avoids CDK and IAC to reduce configuration drift and manual errors, enforcing the use of repository-provided guaranteed deploy scripts via the AWS CLI instead.

Do I need AWS SSO login to run Lambda deployment scripts?▼

You need AWS SSO login to run Lambda deployment scripts. Successful execution of the guaranteed deploy scripts for single-function or all-functions workflows requires active AWS SSO authentication to authorize the AWS CLI operations.

How do I deploy all Lambda functions in a repository at once?▼

To deploy all Lambda functions in a repository at once, use the all-functions workflow within the guaranteed deploy scripts. This automated process reads the scripts/ directory and sequentially applies the scripted deployments across the project.