@getcolter/cli 0.1.0 → 0.1.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 +17 -2
- package/cli/colter.js +1 -1
- package/package.json +20 -9
package/README.md
CHANGED
|
@@ -60,11 +60,26 @@ Colter includes an MCP server for AI agent integration:
|
|
|
60
60
|
|
|
61
61
|
Pre-built binaries for macOS (ARM64, x64), Linux (x64, ARM64), and Windows (x64).
|
|
62
62
|
|
|
63
|
+
## Integrity
|
|
64
|
+
|
|
65
|
+
Release tags (`vX.Y.Z`) create a GitHub Release that includes `checksums.txt` (SHA-256) for each platform binary.
|
|
66
|
+
|
|
67
|
+
If you need to verify the installed binary:
|
|
68
|
+
|
|
69
|
+
1. Download `checksums.txt` from the GitHub Release for your version.
|
|
70
|
+
2. Compute the SHA-256 of your local binary and compare.
|
|
71
|
+
|
|
72
|
+
On macOS/Linux:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
sha256sum "$(command -v colter)"
|
|
76
|
+
```
|
|
77
|
+
|
|
63
78
|
## Links
|
|
64
79
|
|
|
65
80
|
- [Documentation](https://agenticcom.ai/docs)
|
|
66
|
-
- [GitHub](https://github.com/mfbahc/
|
|
67
|
-
- [Report an issue](https://github.com/mfbahc/
|
|
81
|
+
- [GitHub](https://github.com/mfbahc/agentic-com)
|
|
82
|
+
- [Report an issue](https://github.com/mfbahc/agentic-com/issues)
|
|
68
83
|
|
|
69
84
|
## License
|
|
70
85
|
|
package/cli/colter.js
CHANGED
|
@@ -53,7 +53,7 @@ if (!binary) {
|
|
|
53
53
|
`Supported: darwin-arm64, darwin-x64, linux-x64, linux-arm64, win32-x64\n\n` +
|
|
54
54
|
`Install from source:\n` +
|
|
55
55
|
` go install github.com/mfbahc/agentic-com/cmd/colter@latest\n\n` +
|
|
56
|
-
`Or download from: https://github.com/mfbahc/
|
|
56
|
+
`Or download from: https://github.com/mfbahc/agentic-com/releases`
|
|
57
57
|
);
|
|
58
58
|
process.exit(1);
|
|
59
59
|
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getcolter/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Check if any online store works with AI shopping agents. Tests UCP (Universal Commerce) and ACP (Agent Commerce) protocols in one command.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"colter",
|
|
7
7
|
"agentic-commerce",
|
|
8
8
|
"ucp",
|
|
9
9
|
"acp",
|
|
10
|
+
"tap",
|
|
11
|
+
"universal-commerce-protocol",
|
|
12
|
+
"agent-commerce-protocol",
|
|
10
13
|
"commerce-verification",
|
|
11
14
|
"agent-ready",
|
|
12
15
|
"evidence-packs",
|
|
13
16
|
"mcp-server",
|
|
14
|
-
"ai-shopping"
|
|
17
|
+
"ai-shopping",
|
|
18
|
+
"ai-agents",
|
|
19
|
+
"e-commerce",
|
|
20
|
+
"conformance-testing",
|
|
21
|
+
"protocol-testing",
|
|
22
|
+
"shopify",
|
|
23
|
+
"google-shopping",
|
|
24
|
+
"chatgpt-shopping",
|
|
25
|
+
"cli"
|
|
15
26
|
],
|
|
16
27
|
"homepage": "https://agenticcom.ai",
|
|
17
28
|
"repository": {
|
|
18
29
|
"type": "git",
|
|
19
|
-
"url": "https://github.com/mfbahc/
|
|
30
|
+
"url": "https://github.com/mfbahc/agentic-com"
|
|
20
31
|
},
|
|
21
32
|
"bugs": {
|
|
22
|
-
"url": "https://github.com/mfbahc/
|
|
33
|
+
"url": "https://github.com/mfbahc/agentic-com/issues"
|
|
23
34
|
},
|
|
24
35
|
"license": "SEE LICENSE IN LICENSE",
|
|
25
36
|
"author": {
|
|
@@ -38,11 +49,11 @@
|
|
|
38
49
|
"postinstall": "node cli/postinstall.js"
|
|
39
50
|
},
|
|
40
51
|
"optionalDependencies": {
|
|
41
|
-
"@getcolter/cli-darwin-arm64": "0.1.
|
|
42
|
-
"@getcolter/cli-darwin-x64": "0.1.
|
|
43
|
-
"@getcolter/cli-linux-x64": "0.1.
|
|
44
|
-
"@getcolter/cli-linux-arm64": "0.1.
|
|
45
|
-
"@getcolter/cli-win32-x64": "0.1.
|
|
52
|
+
"@getcolter/cli-darwin-arm64": "0.1.1",
|
|
53
|
+
"@getcolter/cli-darwin-x64": "0.1.1",
|
|
54
|
+
"@getcolter/cli-linux-x64": "0.1.1",
|
|
55
|
+
"@getcolter/cli-linux-arm64": "0.1.1",
|
|
56
|
+
"@getcolter/cli-win32-x64": "0.1.1"
|
|
46
57
|
},
|
|
47
58
|
"engines": {
|
|
48
59
|
"node": ">=18"
|