afk-code 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 +5 -9
- package/dist/cli/index.js +1970 -0
- package/package.json +12 -9
- package/slack-manifest.json +3 -3
- package/src/cli/discord.ts +0 -183
- package/src/cli/index.ts +0 -83
- package/src/cli/run.ts +0 -126
- package/src/cli/slack.ts +0 -193
- package/src/discord/channel-manager.ts +0 -191
- package/src/discord/discord-app.ts +0 -359
- package/src/discord/types.ts +0 -4
- package/src/slack/channel-manager.ts +0 -175
- package/src/slack/index.ts +0 -58
- package/src/slack/message-formatter.ts +0 -91
- package/src/slack/session-manager.ts +0 -567
- package/src/slack/slack-app.ts +0 -443
- package/src/slack/types.ts +0 -6
- package/src/types/index.ts +0 -6
- package/src/utils/image-extractor.ts +0 -72
package/README.md
CHANGED
|
@@ -12,18 +12,14 @@ Monitor your Claude Code sessions from Slack or Discord. Get notified when Claud
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
cd afk-code
|
|
15
|
+
# Install globally via npm
|
|
16
|
+
npm install -g afk-code
|
|
18
17
|
|
|
19
|
-
#
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# Link the CLI globally (optional)
|
|
23
|
-
bun link
|
|
18
|
+
# Or run directly with npx
|
|
19
|
+
npx afk-code help
|
|
24
20
|
```
|
|
25
21
|
|
|
26
|
-
Requires
|
|
22
|
+
Requires Node.js 18+.
|
|
27
23
|
|
|
28
24
|
## Slack Setup
|
|
29
25
|
|