@clize/clize 0.17.0 → 0.17.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 +16 -1
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Clize
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Clize is a CLI and MCP server that gives AI coding agents real-world actions: domains, email, deploys, payments, and media generation.** Your agent already has a brain — Clize gives it hands: a domain, a working inbox, a live website. One CLI (plus an MCP server) so coding agents in Claude Code / Codex can register domains, run real email, build & ship sites and short clips, generate media, and collect payments from their customers — across as many projects as you run.
|
|
4
4
|
|
|
5
5
|
→ **[clize.ai](https://clize.ai)**
|
|
6
6
|
|
|
@@ -98,6 +98,21 @@ codex mcp add clize -- clize-mcp # Codex
|
|
|
98
98
|
|
|
99
99
|
Works in both modes — set `CLIZE_API_KEY` (and optionally `CLIZE_API_URL`) in the server's environment to run hosted.
|
|
100
100
|
|
|
101
|
+
## Guides & use cases
|
|
102
|
+
|
|
103
|
+
Step-by-step setup:
|
|
104
|
+
|
|
105
|
+
- [Add Clize as an MCP server to Claude Code](https://clize.ai/claude-code-mcp-setup/) · [to the Codex CLI](https://clize.ai/codex-cli-mcp-setup/)
|
|
106
|
+
- [What an action MCP server is (vs read-only)](https://clize.ai/mcp-server-real-world-actions/)
|
|
107
|
+
|
|
108
|
+
What agents actually do with it:
|
|
109
|
+
|
|
110
|
+
- [Send a real email — with your approval](https://clize.ai/use-cases/agent-send-email/)
|
|
111
|
+
- [Deploy a site straight from the agent](https://clize.ai/use-cases/agent-deploy-site/)
|
|
112
|
+
- [Pass email verification when signing up for services](https://clize.ai/use-cases/agent-email-verification/)
|
|
113
|
+
- [Triage a support inbox, draft replies you approve](https://clize.ai/use-cases/triage-support-inbox/)
|
|
114
|
+
- [Create a Stripe payment link behind the money gate](https://clize.ai/use-cases/agent-payment-link/)
|
|
115
|
+
|
|
101
116
|
## License
|
|
102
117
|
|
|
103
118
|
[MIT](./LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clize/clize",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "The real-world capability layer for AI agents — domains, email, deploy, media. CLI + MCP.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -20,6 +20,13 @@
|
|
|
20
20
|
"media"
|
|
21
21
|
],
|
|
22
22
|
"homepage": "https://clize.ai",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/cooldk/clize-cli.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/cooldk/clize-cli/issues"
|
|
29
|
+
},
|
|
23
30
|
"license": "MIT",
|
|
24
31
|
"type": "module",
|
|
25
32
|
"bin": {
|