@kensio/yulin-aws-simulation 1.11.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://anthropic.com/claude-code/plugin.schema.json",
3
3
  "name": "yulin-aws-simulation",
4
- "version": "1.11.0",
4
+ "version": "1.13.0",
5
5
  "description": "How to test AWS code well with the @kensio/yulin in-process simulator.",
6
6
  "author": {
7
7
  "name": "Kensio Software",
package/README.md CHANGED
@@ -1,26 +1,41 @@
1
1
  # @kensio/yulin-aws-simulation
2
2
 
3
- A Claude Code skill for testing AWS code with [Yulin](https://yulinsim.dev/) (`@kensio/yulin`), an
4
- AWS simulator that runs in process, in memory, with no network and no AWS account.
3
+ An agent skill for testing AWS code with [Yulin](https://yulinsim.dev/) (`@kensio/yulin`), an AWS
4
+ simulator that runs in process, in memory, with no network and no AWS account.
5
5
 
6
6
  Yulin's own docs are the authority on its API. This skill is the usage guidance missing from the
7
7
  API: what to reach for, what to avoid, and what to do when the simulator refuses something.
8
8
 
9
9
  ## Install
10
10
 
11
- From the marketplace:
11
+ Into any agent that reads `SKILL.md`:
12
+
13
+ ```bash
14
+ npx @kensio/skills add yulin-aws-simulation
15
+ ```
16
+
17
+ That copies the skill directory into `.agents/skills/`, where Codex, Cursor, Copilot, Gemini CLI and
18
+ the other implementations of the specification look for one. Pass `--agent claude` for
19
+ `.claude/skills/`, `--agent copilot` for `.github/skills/`, and `--user` to install it for every
20
+ project at once.
21
+
22
+ Claude Code also takes it as a plugin:
12
23
 
13
24
  ```bash
14
25
  claude plugin marketplace add KensioSoftware/kensio.ai
15
26
  claude plugin install yulin-aws-simulation@kensio
16
27
  ```
17
28
 
18
- From npm:
29
+ Or pin it in a repository as a dependency:
19
30
 
20
31
  ```bash
21
32
  npm install @kensio/yulin-aws-simulation
22
33
  ```
23
34
 
35
+ Every skill is also published as a zip on each
36
+ [release](https://github.com/KensioSoftware/kensio.ai/releases), for a machine with no npm reach.
37
+ Unzip it into `.agents/skills/` and it is installed.
38
+
24
39
  ## What it covers
25
40
 
26
41
  **Deploy your real synthesized template.** Deploy the JSON CDK produced, with
package/package.json CHANGED
@@ -1,16 +1,21 @@
1
1
  {
2
2
  "name": "@kensio/yulin-aws-simulation",
3
- "version": "1.11.0",
3
+ "version": "1.13.0",
4
4
  "description": "How to test AWS code well with the @kensio/yulin in-process simulator.",
5
5
  "keywords": [
6
+ "agent-skills",
6
7
  "aws",
7
8
  "cdk",
8
9
  "claude",
9
10
  "claude-code",
10
11
  "claude-code-plugin",
11
12
  "cloudformation",
13
+ "codex",
14
+ "copilot",
15
+ "cursor",
12
16
  "kensio",
13
17
  "skill",
18
+ "skill-md",
14
19
  "testing",
15
20
  "yulin"
16
21
  ],
@@ -1,6 +1,9 @@
1
1
  ---
2
2
  name: yulin-aws-simulation
3
3
  description: Use the @kensio/yulin in-process AWS simulator well when testing AWS code, using it directly rather than building a harness around it, driving tests, local dev and production from one synthesized CDK template, intercepting SDK clients with SimSdk, controlling simulated time, matching service errors by name, and handling properties Yulin refuses to simulate. Use when writing or reviewing tests that touch AWS, when replacing aws-sdk-client-mock or hand-rolled AWS stubs, when a CDK stack needs testing, when test setup around Yulin is growing helper classes or wrapper functions, and when Yulin refuses a template property or an SDK command.
4
+ license: Apache-2.0
5
+ metadata:
6
+ version: "1.13.0"
4
7
  ---
5
8
 
6
9
  # Testing with Yulin