@thejoseki/clawform 0.0.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/LICENSE +9 -0
- package/README.md +18 -0
- package/bin/clawform.js +16 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2026 Joseki. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This release contains no product — it reserves the package name and prints a
|
|
4
|
+
notice. You may install and run it. You may not redistribute it under this name.
|
|
5
|
+
|
|
6
|
+
Clawform itself is licensed commercially, per seat. Those terms ship with the
|
|
7
|
+
product and are not granted by this package.
|
|
8
|
+
|
|
9
|
+
Contact: support@thejoseki.com
|
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# clawform
|
|
2
|
+
|
|
3
|
+
**Not released yet.** This package reserves the name.
|
|
4
|
+
|
|
5
|
+
Clawform will be a commercial tool for running AWS CloudFormation safely from
|
|
6
|
+
Claude Code — rules the agent reads before it writes, a CLI that does every AWS
|
|
7
|
+
call through a changeset you confirm, and a hook that vetoes dangerous commands
|
|
8
|
+
before they run.
|
|
9
|
+
|
|
10
|
+
Installing this version gives you a stub that prints a notice. It does not talk
|
|
11
|
+
to AWS, read credentials, or write anything to disk.
|
|
12
|
+
|
|
13
|
+
Availability and pricing: **support@thejoseki.com**
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Clawform is not affiliated with Amazon Web Services, Inc. "AWS" and
|
|
18
|
+
"CloudFormation" are trademarks of Amazon.com, Inc. or its affiliates.
|
package/bin/clawform.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Placeholder release. This package reserves the name; the tool itself is not
|
|
4
|
+
// published yet. Every command prints the same notice rather than failing
|
|
5
|
+
// silently or pretending to work — someone who installed this expected a CLI.
|
|
6
|
+
|
|
7
|
+
const NOTICE = `
|
|
8
|
+
Clawform is not released yet.
|
|
9
|
+
|
|
10
|
+
This package reserves the name. Installing it does not give you the tool.
|
|
11
|
+
Nothing here talks to AWS, reads your credentials, or writes to your disk.
|
|
12
|
+
|
|
13
|
+
Ask about availability: support@thejoseki.com
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
process.stdout.write(NOTICE);
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thejoseki/clawform",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "Clawform — safe CloudFormation workflows for Claude Code. Name reserved; the tool is not released yet.",
|
|
8
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
9
|
+
"author": "Joseki <support@thejoseki.com>",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"bin": {
|
|
12
|
+
"clawform": "bin/clawform.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"bin/",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=20.10"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"cloudformation",
|
|
23
|
+
"aws",
|
|
24
|
+
"claude-code",
|
|
25
|
+
"infrastructure-as-code"
|
|
26
|
+
]
|
|
27
|
+
}
|