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
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Bob is a moldable office-agent shell. Security-sensitive surfaces include:
## Out of scope

- Third-party LLM provider security (Anthropic, OpenAI, Ollama Cloud, etc.)
- Pi-coding-agent (`@mariozechner/pi-coding-agent`) — report upstream.
- Pi-coding-agent (`@earendil-works/pi-coding-agent`) — report upstream.
- Discord.js internals — report upstream.
- The Flair memory layer — see `tpsdev-ai/flair`'s `SECURITY.md`.

Expand Down
228 changes: 48 additions & 180 deletions bun.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cap-discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "bun test"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "0.73.1",
"@earendil-works/pi-coding-agent": "0.79.10",
"@tpsdev-ai/bob-discord": "workspace:*",
"@tpsdev-ai/bob-shell": "workspace:*",
"discord.js": "^14.27.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-discord/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// only inside the DiscordJsClient. It is never logged, echoed, returned in a
// tool result, or placed in the session transcript.

import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { DiscordJsClient } from "@tpsdev-ai/bob-discord";
import { wireDiscordCapability } from "./capability.js";
import { loadConfigFromEnv, readToken } from "./config.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-discord/test/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
createAgentSession,
DefaultResourceLoader,
SessionManager,
} from "@mariozechner/pi-coding-agent";
} from "@earendil-works/pi-coding-agent";
import { CONFIG_ENV_VAR } from "../src/config.js";

// The load-bearing proof (mirrors the cap-fixture e2e): a REAL pi AgentSession
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-flair/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "bun test"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "0.73.1",
"@earendil-works/pi-coding-agent": "0.79.10",
"@tpsdev-ai/bob-shell": "workspace:*",
"typebox": "1.1.38"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-flair/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// and lives only inside the FlairHttpClient. It is never logged, echoed,
// returned in a tool result, or placed in the session transcript.

import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { wireFlairCapability } from "./capability.js";
import { FlairHttpClient } from "./client.js";
import { loadConfigFromEnv } from "./config.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-observatory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"test": "bun test"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "0.73.1",
"@earendil-works/pi-coding-agent": "0.79.10",
"@tpsdev-ai/bob-shell": "workspace:*",
"typebox": "1.1.38"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cap-observatory/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// returned in a tool result, or placed in the session transcript. This is the
// OFFICE key (verified against ObsOffice.publicKey), NOT an agent's Flair key.

import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { wireObservatoryCapability } from "./capability.js";
import { ObservatoryHttpClient } from "./client.js";
import { loadConfigFromEnv } from "./config.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/shell/examples/cap-fixture/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// catalog points at it. Kept as a sibling module so a real published capability
// package would export both from one place.

import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
import { Type } from "typebox";

export default function (pi: ExtensionAPI) {
Expand Down
2 changes: 1 addition & 1 deletion packages/shell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"test": "bun test"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "0.73.1",
"@earendil-works/pi-coding-agent": "0.79.10",
"croner": "9.0.0",
"typebox": "1.1.38"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/shell/src/persistent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

import { homedir } from "node:os";
import { join } from "node:path";
import { SessionManager } from "@mariozechner/pi-coding-agent";
import { SessionManager } from "@earendil-works/pi-coding-agent";
import { type CronSchedulerHandle, startCronScheduler } from "./cron.js";
import {
createPiRunSession,
Expand Down
2 changes: 1 addition & 1 deletion packages/shell/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
DefaultResourceLoader,
ModelRegistry,
SessionManager,
} from "@mariozechner/pi-coding-agent";
} from "@earendil-works/pi-coding-agent";
import { readCron } from "./bob-yaml.js";
import { capabilityConfigEnv, resolveCapabilities } from "./capability-loader.js";
import type { CronEntry } from "./index.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/shell/test/capability-catalog.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
createAgentSession,
DefaultResourceLoader,
SessionManager,
} from "@mariozechner/pi-coding-agent";
} from "@earendil-works/pi-coding-agent";
import { BLESSED_CATALOG, lookupCapability } from "../src/capability-catalog.js";
import { resolveCapabilities } from "../src/capability-loader.js";

Expand Down
Loading