katto-clipper 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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/notice.js +9 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # ⚠ Not the official Katto CLI
2
+
3
+ This package name is **reserved by Katto** to prevent typosquatting. It does nothing.
4
+
5
+ **Install the real CLI instead:**
6
+
7
+ ```bash
8
+ npm i -g katto-cli
9
+ katto --help
10
+ ```
11
+
12
+ Docs: https://katto.tech/agent · MCP: https://katto.tech/mcp
package/notice.js ADDED
@@ -0,0 +1,9 @@
1
+ // Defensive stub: this package name is reserved by Katto to prevent typosquat
2
+ // phishing. It does nothing except point users to the real CLI. Never asks for
3
+ // or handles any API key.
4
+ console.log(
5
+ "\n ⚠ This is NOT the official Katto CLI.\n" +
6
+ " Install the real one: npm i -g katto-cli\n" +
7
+ " Then run: katto --help\n" +
8
+ " Docs: https://katto.tech/agent\n"
9
+ );
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "katto-clipper",
3
+ "version": "0.0.1",
4
+ "description": "Not the official Katto CLI. The real package is `katto-cli`. This name is reserved by Katto to prevent typosquatting — install `katto-cli` instead.",
5
+ "keywords": [
6
+ "katto",
7
+ "katto-cli",
8
+ "reserved",
9
+ "official"
10
+ ],
11
+ "homepage": "https://katto.tech/agent",
12
+ "license": "MIT",
13
+ "scripts": {
14
+ "postinstall": "node ./notice.js"
15
+ },
16
+ "files": [
17
+ "notice.js",
18
+ "README.md"
19
+ ]
20
+ }