flingit 0.0.46 → 0.0.48
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/cli/commands/dev.d.ts.map +1 -1
- package/dist/cli/commands/dev.js +21 -14
- package/dist/cli/commands/dev.js.map +1 -1
- package/dist/cli/commands/launch.d.ts.map +1 -1
- package/dist/cli/commands/launch.js +8 -6
- package/dist/cli/commands/launch.js.map +1 -1
- package/dist/cli/commands/push.d.ts.map +1 -1
- package/dist/cli/commands/push.js +13 -1
- package/dist/cli/commands/push.js.map +1 -1
- package/dist/cli/commands/signup.d.ts.map +1 -1
- package/dist/cli/commands/signup.js +10 -0
- package/dist/cli/commands/signup.js.map +1 -1
- package/dist/cli/commands/whoami.d.ts.map +1 -1
- package/dist/cli/commands/whoami.js +13 -0
- package/dist/cli/commands/whoami.js.map +1 -1
- package/dist/cli/deploy/bundler.d.ts +5 -0
- package/dist/cli/deploy/bundler.d.ts.map +1 -1
- package/dist/cli/deploy/bundler.js +7 -3
- package/dist/cli/deploy/bundler.js.map +1 -1
- package/dist/cli/utils/email.js +1 -1
- package/dist/cli/utils/email.js.map +1 -1
- package/dist/runtime/email.d.ts.map +1 -1
- package/dist/runtime/email.js +2 -1
- package/dist/runtime/email.js.map +1 -1
- package/dist/worker-runtime/entry-extract.d.ts.map +1 -1
- package/dist/worker-runtime/entry-extract.js +3 -2
- package/dist/worker-runtime/entry-extract.js.map +1 -1
- package/dist/worker-runtime/index.d.ts +9 -0
- package/dist/worker-runtime/index.d.ts.map +1 -1
- package/dist/worker-runtime/index.js +13 -1
- package/dist/worker-runtime/index.js.map +1 -1
- package/package.json +3 -3
- package/templates/default/dot-claude/settings.local.json +1 -1
- package/templates/default/dot-claude/skills/fling/.hash +1 -1
- package/templates/default/dot-claude/skills/fling/SKILL.md +47 -45
- package/templates/default/dot-claude/skills/fling/references/API.md +13 -13
- package/templates/default/dot-claude/skills/fling/references/DISCORD.md +6 -6
- package/templates/default/dot-claude/skills/fling/references/EMAIL-INBOUND.md +111 -0
- package/templates/default/dot-claude/skills/fling/references/FEEDBACK.md +3 -3
- package/templates/default/dot-claude/skills/fling/references/GH-ACTION.md +1 -1
- package/templates/default/dot-claude/skills/fling/references/SLACK.md +6 -6
|
@@ -7,8 +7,8 @@ Build Slack chatops bots with Fling. Respond to @mentions, send messages, and re
|
|
|
7
7
|
Slack requires a one-time setup before use:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
npx fling plugin install slack # Connect Slack workspace (opens browser)
|
|
11
|
+
npx fling it # Deploy code
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Run these commands yourself — you have bash access.
|
|
@@ -184,16 +184,16 @@ For more block types, see the Slack Block Kit documentation.
|
|
|
184
184
|
|
|
185
185
|
```bash
|
|
186
186
|
# Setup
|
|
187
|
-
|
|
187
|
+
npx fling plugin install slack # Connect Slack (OAuth), auto-claims workspace
|
|
188
188
|
|
|
189
189
|
# Status
|
|
190
|
-
|
|
190
|
+
npx fling plugin permissions slack # Show connection status + workspaces
|
|
191
191
|
|
|
192
192
|
# Deployment
|
|
193
|
-
|
|
193
|
+
npx fling it
|
|
194
194
|
|
|
195
195
|
# Teardown
|
|
196
|
-
|
|
196
|
+
npx fling plugin remove slack # Disconnect, release all workspaces
|
|
197
197
|
```
|
|
198
198
|
|
|
199
199
|
## How It Works
|