@lightupai/polaris 0.0.69 → 0.0.71
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 +17 -5
- package/package.json +19 -1
package/README.md
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
|
-
# Polaris
|
|
1
|
+
# Polaris — It's like Gong for Claude Code sessions
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Record, stream, and collaborate on AI coding sessions in real time. Polaris captures every prompt, response, and tool call from Claude Code and streams them to Slack so your team can observe, advise, and learn from each other's sessions.
|
|
4
|
+
|
|
5
|
+
**AI coding session recording for teams.** Instead of AI sessions disappearing when the terminal closes, Polaris captures the full session — what was asked, what the agent did, which files it touched, and what tools it called. Every session is searchable, shareable, and streamable to Slack.
|
|
6
|
+
|
|
7
|
+
## What Polaris does
|
|
8
|
+
|
|
9
|
+
- **Record Claude Code sessions** — hooks capture prompts, responses, and tool calls automatically
|
|
10
|
+
- **Stream to Slack in real time** — every session gets a dedicated Slack channel with live updates
|
|
11
|
+
- **Multiplayer AI coding** — teammates can watch sessions, send advice from Slack, and redirect agents mid-session
|
|
12
|
+
- **Session history and search** — browse past sessions, search across projects, attach context to PRs
|
|
13
|
+
- **Team dashboard** — see who's working on what, active sessions, prompt activity across the org
|
|
14
|
+
|
|
15
|
+
Works with Claude Code today. Designed to support Cursor, Codex, and other AI coding tools.
|
|
4
16
|
|
|
5
17
|
## Architecture
|
|
6
18
|
|
|
7
|
-
- **API** (`src/service/server.ts`) — Cloud service
|
|
8
|
-
- **Web** (`src/web/`) — Dashboard
|
|
9
|
-
- **Daemon** (`src/daemon/daemon.ts`) — Local daemon
|
|
19
|
+
- **API** (`src/service/server.ts`) — Cloud service. REST + WebSocket for projects, sessions, events.
|
|
20
|
+
- **Web** (`src/web/`) — Dashboard and landing page. Google SSO, Slack OAuth, real-time SSE updates.
|
|
21
|
+
- **Daemon** (`src/daemon/daemon.ts`) — Local daemon. Routes hook events from coding agents to the API.
|
|
10
22
|
- **MCP Client** (`src/client/client.ts`) — MCP channel server for Claude Code. Provides `/polaris` commands.
|
|
11
23
|
- **Slack Bridge** (`src/slack/bridge.ts`) — Bidirectional bridge between project event streams and Slack channels.
|
|
12
24
|
- **Hooks** (`hooks/`) — Shell scripts that capture coding agent interactions (prompts, responses, tool calls).
|
package/package.json
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lightupai/polaris",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.71",
|
|
4
|
+
"description": "Record and stream Claude Code sessions to Slack. Like Gong for AI coding — capture every prompt, response, and tool call. Multiplayer collaboration across AI coding agents.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude-code",
|
|
7
|
+
"ai-coding",
|
|
8
|
+
"session-recording",
|
|
9
|
+
"slack",
|
|
10
|
+
"gong",
|
|
11
|
+
"observability",
|
|
12
|
+
"multiplayer",
|
|
13
|
+
"collaboration",
|
|
14
|
+
"mcp",
|
|
15
|
+
"claude"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://app.withpolaris.ai",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/lightup-data/polaris"
|
|
21
|
+
},
|
|
4
22
|
"type": "module",
|
|
5
23
|
"bin": {
|
|
6
24
|
"polaris": "bin/polaris",
|