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.
Files changed (41) hide show
  1. package/dist/cli/commands/dev.d.ts.map +1 -1
  2. package/dist/cli/commands/dev.js +21 -14
  3. package/dist/cli/commands/dev.js.map +1 -1
  4. package/dist/cli/commands/launch.d.ts.map +1 -1
  5. package/dist/cli/commands/launch.js +8 -6
  6. package/dist/cli/commands/launch.js.map +1 -1
  7. package/dist/cli/commands/push.d.ts.map +1 -1
  8. package/dist/cli/commands/push.js +13 -1
  9. package/dist/cli/commands/push.js.map +1 -1
  10. package/dist/cli/commands/signup.d.ts.map +1 -1
  11. package/dist/cli/commands/signup.js +10 -0
  12. package/dist/cli/commands/signup.js.map +1 -1
  13. package/dist/cli/commands/whoami.d.ts.map +1 -1
  14. package/dist/cli/commands/whoami.js +13 -0
  15. package/dist/cli/commands/whoami.js.map +1 -1
  16. package/dist/cli/deploy/bundler.d.ts +5 -0
  17. package/dist/cli/deploy/bundler.d.ts.map +1 -1
  18. package/dist/cli/deploy/bundler.js +7 -3
  19. package/dist/cli/deploy/bundler.js.map +1 -1
  20. package/dist/cli/utils/email.js +1 -1
  21. package/dist/cli/utils/email.js.map +1 -1
  22. package/dist/runtime/email.d.ts.map +1 -1
  23. package/dist/runtime/email.js +2 -1
  24. package/dist/runtime/email.js.map +1 -1
  25. package/dist/worker-runtime/entry-extract.d.ts.map +1 -1
  26. package/dist/worker-runtime/entry-extract.js +3 -2
  27. package/dist/worker-runtime/entry-extract.js.map +1 -1
  28. package/dist/worker-runtime/index.d.ts +9 -0
  29. package/dist/worker-runtime/index.d.ts.map +1 -1
  30. package/dist/worker-runtime/index.js +13 -1
  31. package/dist/worker-runtime/index.js.map +1 -1
  32. package/package.json +3 -3
  33. package/templates/default/dot-claude/settings.local.json +1 -1
  34. package/templates/default/dot-claude/skills/fling/.hash +1 -1
  35. package/templates/default/dot-claude/skills/fling/SKILL.md +47 -45
  36. package/templates/default/dot-claude/skills/fling/references/API.md +13 -13
  37. package/templates/default/dot-claude/skills/fling/references/DISCORD.md +6 -6
  38. package/templates/default/dot-claude/skills/fling/references/EMAIL-INBOUND.md +111 -0
  39. package/templates/default/dot-claude/skills/fling/references/FEEDBACK.md +3 -3
  40. package/templates/default/dot-claude/skills/fling/references/GH-ACTION.md +1 -1
  41. 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
- npm exec fling plugin install slack # Connect Slack workspace (opens browser)
11
- npm exec fling push # Deploy code
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
- npm exec fling plugin install slack # Connect Slack (OAuth), auto-claims workspace
187
+ npx fling plugin install slack # Connect Slack (OAuth), auto-claims workspace
188
188
 
189
189
  # Status
190
- npm exec fling plugin permissions slack # Show connection status + workspaces
190
+ npx fling plugin permissions slack # Show connection status + workspaces
191
191
 
192
192
  # Deployment
193
- npm exec fling push
193
+ npx fling it
194
194
 
195
195
  # Teardown
196
- npm exec fling plugin remove slack # Disconnect, release all workspaces
196
+ npx fling plugin remove slack # Disconnect, release all workspaces
197
197
  ```
198
198
 
199
199
  ## How It Works