aws-startups-solution-architecture
v0.1.0Technical AWS solutions for the problems startups get stuck on, from the AWS Startups Solution Architecture team. Multi-tenant SaaS isolation enforced in IAM rather than application code, and running a judgment agent such as an LLM reviewer inside a CI path. Startup here means the technical constraints are startup constraints: no dedicated platform or security team, a cost ceiling that is someone's runway, and a deadline that is a funding milestone. Draws all general-purpose AWS service depth from Agent Toolkit for AWS as an upstream dependency rather than restating it.
By Amazon Web ServicesLicense: Apache-2.019 GitHub starsUpdated yesterday
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 3 skill or MCP entries
- Source updated
- Sep 22, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install aws-startups-solution-architecture for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install aws-startups-solution-architecture@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/awslabs/startupsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is solution-architecture/plugins/aws-startups-solution-architecture/.
Plugin files
├── .claude-plugin/plugin.json├── skills/agentcore-patterns/SKILL.md├── skills/multi-tenant-isolation/SKILL.md└── skills/self-hosted-llm-batch-inference/SKILL.md
Included Skills3
This skill should be used when an automated agent's output is published under its own identity and carries weight in someone else's work, such as a reviewer whose verdict lands on a pull request, and the open question is how much authority it has actually earned. Covers which conclusions such an agent may state as settled and which it must hand to a person, why a verdict that moves between runs on unchanged input cannot be allowed to decide anything, handing an uncertain item to a human rather than discarding it, grounding each claim in something computed rather than recalled, and the published-state and recall behaviour that decides whether people keep reading the output or learn to skim it. It should also be used when such an agent is being ignored, contradicts itself between runs, or reports a state that nothing current supports. Not for measuring or improving an agent's own output quality, which belongs to aws-agents:agents-optimize, nor for building, deploying, or hardening an agent.
This skill should be used when designing or fixing tenant isolation for a multi-tenant SaaS on AWS, where a team with no dedicated security engineer must make a cross-tenant leak structurally impossible rather than a code-review responsibility. Covers choosing a silo, pool, or bridge model per layer rather than per application, enforcing isolation in IAM session policies and the database so a forgotten predicate fails closed, partitioning data across DynamoDB, Postgres, and S3, containing noisy neighbors, and attributing cost per tenant in a pooled fleet. It should also be used when hardening an existing pooled deployment against cross-tenant access, or when one large customer demands dedicated infrastructure mid-deal. Not for single-tenant architecture or general IAM policy authoring, which belong to the aws-core skills upstream.
This skill should be used when a startup without a dedicated ML platform team needs recurring, latency-tolerant offline inference for a self-hosted 1B to 8B generative language model on AWS while minimizing GPU spend and recovering automatically from Spot interruption. It prescribes AWS Batch backed by Amazon ECS Managed Instances Spot, with model artifacts staged in Amazon S3, deterministic input shards, vLLM offline inference on one GPU, bounded retries, and output reconciliation before success. Covers sizing from the real prompt and model footprint, choosing networking without an avoidable idle cost floor, and verifying that results are complete and GPU capacity is gone. Not for online endpoints, training, embeddings, other inference engines, multi-GPU or distributed inference, or one-off experiments where manual rerun is acceptable.
Plugin manifests1
{
"name": "aws-startups-solution-architecture",
"displayName": "AWS Startups Solution Architecture",
"version": "0.1.0",
"description": "Technical AWS solutions for the problems startups get stuck on, from the AWS Startups Solution Architecture team. Multi-tenant SaaS isolation enforced in IAM rather than application code, and running a judgment agent such as an LLM reviewer inside a CI path. Startup here means the technical constraints are startup constraints: no dedicated platform or security team, a cost ceiling that is someone's runway, and a deadline that is a funding milestone. Draws all general-purpose AWS service depth from Agent Toolkit for AWS as an upstream dependency rather than restating it.",
"author": {
"name": "Amazon Web Services"
},
"license": "Apache-2.0",
"keywords": [
"startups",
"startup",
"solution-architecture",
"multi-tenant",
"multitenant",
"tenant-isolation",
"saas",
"noisy-neighbor",
"per-tenant-cost",
"lean-team",
"runway"
],
"skills": "./skills/",
"dependencies": [
{
"name": "aws-core",
"marketplace": "claude-plugins-official"
},
{
"name": "aws-agents",
"marketplace": "claude-plugins-official"
}
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[aws-startups-solution-architecture on Agent Plugins Marketplace](https://pluginsmp.com/plugins/aws-startups-solution-architecture)