@thejoseki/clawform 2.2.0 → 2.2.1

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.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  **Safe CloudFormation workflows for Claude Code.**
4
4
 
5
+ ![The Clawform hook vetoing an aws cloudformation delete-stack, then the safe changeset path](https://clawform.thejoseki.com/assets/clawform-demo.gif)
6
+
5
7
  Claude writes CloudFormation fast — and just as confidently when it's wrong.
6
8
  Clawform is the layer between the agent and your AWS account.
7
9
 
@@ -13,13 +15,17 @@ operations and the stacks you've marked frozen are refused.
13
15
 
14
16
  CloudFormation only — by design. Not Terraform, not CDK, not Pulumi.
15
17
 
18
+ **Try it free for 14 days** — the full kit, email-only checkout, no card:
19
+ <https://clawform.thejoseki.com>. When the trial lapses, `deploy` and
20
+ `rollback` keep working; an expired licence never strands a stack.
21
+
16
22
  ## Quickstart (10 minutes)
17
23
 
18
24
  ```bash
19
25
  # 1. Install the CLI (adds `clawform` to your PATH)
20
26
  npm i -g @thejoseki/clawform
21
27
 
22
- # 2. Activate your license (the key is in your purchase email)
28
+ # 2. Activate your key free 14-day trial or purchase, both from the site
23
29
  clawform activate <your-license-key>
24
30
 
25
31
  # 3. Install the Claude Code plugin — the CLI unpacks it from your activated copy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thejoseki/clawform",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Clawform — safe CloudFormation workflows for Claude Code",
5
5
  "homepage": "https://clawform.thejoseki.com",
6
6
  "type": "module",
@@ -68,8 +68,12 @@ export async function assertLicensed({
68
68
  const record = readLicense();
69
69
  if (record.status !== 'active' || !record.key) {
70
70
  throw new Error(
71
- `'clawform ${command}' needs an activated license. Run: clawform activate <key> ` +
72
- '(the key is in your purchase email).',
71
+ // The one message every npm installer without a key will read — the only
72
+ // audience the product reliably has. It leads with the door that costs
73
+ // nothing, then the one for a key already bought.
74
+ `'clawform ${command}' needs an activated license. ` +
75
+ 'New here? There is a free 14-day trial — full kit, no card — at https://clawform.thejoseki.com. ' +
76
+ 'Already have a key (trial or purchase email)? Run: clawform activate <key>',
73
77
  );
74
78
  }
75
79