Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Every agentic session leaves a JSONL trail. Endless possibilities inside each ex
- You reach back through a **local dashboard** — timelines, plan versions, and milestones, all in your browser at `localhost:3737`.
- **Nothing leaves your machine.** No telemetry, no cloud sync; optional AI agents use your own API key.

<p align="center">
<video src="https://github.com/emiraksay/keddy/releases/download/v0.1.1/keddy-demo.mp4" controls width="100%"></video>
</p>

## How Keddy Works

<picture>
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "keddy",
"version": "0.1.0",
"description": "Session intelligence for Claude Code — navigable timelines, plan tracking, and past session search",
"version": "0.1.1",
"description": "Session intelligence for your coding agent.",
"license": "Apache-2.0",
"author": {
"name": "Emir Enes Aksay",
"email": "emire.aksay@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emireaksay-8867/keddy.git"
"url": "git+https://github.com/emiraksay/keddy.git"
},
"homepage": "https://github.com/emireaksay-8867/keddy#readme",
"bugs": "https://github.com/emireaksay-8867/keddy/issues",
"homepage": "https://github.com/emiraksay/keddy#readme",
"bugs": "https://github.com/emiraksay/keddy/issues",
"keywords": [
"claude-code",
"session-intelligence",
Expand Down
5 changes: 3 additions & 2 deletions tests/parser-advanced.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ describe("parseTranscript — multi-turn assistant text accumulation", () => {
expect(result.exchanges.length).toBe(1);

const exchange = result.exchanges[0];
// Should contain text from ALL three assistant messages
expect(exchange.assistant_response).toContain("Let me look at the login code first");
// Text before the first tool call lands in assistant_response_pre;
// text after tool calls lands in assistant_response.
expect(exchange.assistant_response_pre).toContain("Let me look at the login code first");
expect(exchange.assistant_response).toContain("I see the issue");
expect(exchange.assistant_response).toContain("login function has been fixed");
});
Expand Down
8 changes: 5 additions & 3 deletions tests/parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ describe("split content blocks (real Claude Code format)", () => {
expect(result.exchanges[0].tool_calls.length).toBe(2);
expect(result.exchanges[0].tool_calls[0].name).toBe("Read");
expect(result.exchanges[0].tool_calls[1].name).toBe("Read");
expect(result.exchanges[0].assistant_response).toContain("I'll read the file");
expect(result.exchanges[0].assistant_response_pre).toContain("I'll read the file");
expect(result.exchanges[0].assistant_response).toContain("The project has two files");
});

Expand All @@ -314,9 +314,11 @@ describe("split content blocks (real Claude Code format)", () => {

it("should accumulate all text across split assistant entries", () => {
const result = parseTranscript(join(FIXTURES, "sample-split-blocks.jsonl"));
// Exchange 0 has text from TWO separate assistant entries (line 4 + line 9)
// Exchange 0 has text from TWO separate assistant entries (line 4 + line 9).
// Pre-tool text lands in assistant_response_pre; post-tool text lands in assistant_response.
const pre = result.exchanges[0].assistant_response_pre;
const resp = result.exchanges[0].assistant_response;
expect(resp).toContain("I'll read the file");
expect(pre).toContain("I'll read the file");
expect(resp).toContain("index.ts");
expect(resp).toContain("utils.ts");
});
Expand Down
Loading