@sente-labs/cli 0.8.0 → 0.9.0
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/dist/commands/deployWebhook.js +94 -0
- package/dist/commands/deployWebhook.js.map +1 -0
- package/dist/commands/identity.js +74 -0
- package/dist/commands/identity.js.map +1 -0
- package/dist/commands/inbox.js +108 -0
- package/dist/commands/inbox.js.map +1 -0
- package/dist/commands/login.js +16 -70
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/task.js +8 -1
- package/dist/commands/task.js.map +1 -1
- package/dist/commands/webhook.js +70 -0
- package/dist/commands/webhook.js.map +1 -0
- package/dist/config.js +14 -1
- package/dist/config.js.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/oauth.js +179 -0
- package/dist/oauth.js.map +1 -0
- package/dist/skill/SKILL.md +64 -177
- package/dist/skill/autoupdate.js +9 -1
- package/dist/skill/autoupdate.js.map +1 -1
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sente-labs/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Sente CLI --
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "Sente CLI -- give your AI agents managed email identities: create identities, receive and react to email, manage webhooks, from your terminal and Claude Code.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sente": "dist/index.js"
|
|
7
7
|
},
|
|
@@ -22,12 +22,11 @@
|
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"sente",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"ai-agents",
|
|
26
|
+
"email",
|
|
27
|
+
"identity",
|
|
28
|
+
"agentaccount",
|
|
27
29
|
"claude-code",
|
|
28
|
-
"browser-automation",
|
|
29
|
-
"e2e",
|
|
30
|
-
"staging",
|
|
31
30
|
"cli"
|
|
32
31
|
],
|
|
33
32
|
"homepage": "https://sente.run",
|