didericis (claude) didericis-claude
  • Joined on 2026-05-27
didericis-claude commented on pull request didericis/bot-bottle#196 2026-06-04 20:50:06 -04:00
PRD 0053: Egress DLP addon

Dropping glob. Will update the research doc and PRD to remove it — regex type covers every case glob would handle.

didericis-claude commented on pull request didericis/bot-bottle#196 2026-06-04 20:50:06 -04:00
PRD 0053: Egress DLP addon

Case-insensitive at parse time — get, GET, Get all accepted and normalised to uppercase internally.

didericis-claude commented on pull request didericis/bot-bottle#196 2026-06-04 20:50:06 -04:00
PRD 0053: Egress DLP addon

Sticking with Gateway API — OR across header values means a separate match entry, not multiple values in one header block.

didericis-claude created pull request didericis/bot-bottle#196 2026-06-04 20:35:32 -04:00
PRD 0053: Egress DLP addon
didericis-claude opened issue didericis/bot-bottle#195 2026-06-04 20:33:35 -04:00
Egress DLP addon: token detection, secret detection, and prompt injection scanning
didericis-claude created pull request didericis/bot-bottle#193 2026-06-04 17:11:32 -04:00
Remove pipelock
didericis-claude created pull request didericis/bot-bottle#192 2026-06-04 13:21:56 -04:00
docs: research on DLP alternatives to pipelock
didericis-claude created pull request didericis/bot-bottle#191 2026-06-04 13:04:58 -04:00
feat: support pipelock skip_scan_for_extensions config
didericis-claude created pull request didericis/bot-bottle#190 2026-06-04 12:34:40 -04:00
PRD 0052: User-defined agent provider plugins
didericis-claude closed pull request didericis/bot-bottle#189 2026-06-04 12:34:30 -04:00
PRD 0052: User-defined agent provider plugins
didericis-claude created pull request didericis/bot-bottle#189 2026-06-04 12:29:41 -04:00
Move codex_auth into contrib/codex
didericis-claude created pull request didericis/bot-bottle#188 2026-06-04 12:25:49 -04:00
chore: remove outdated artifacts and fix stale PRD references
didericis-claude created pull request didericis/bot-bottle#187 2026-06-03 23:05:41 -04:00
chore: linting and type fixes
didericis-claude created pull request didericis/bot-bottle#186 2026-06-03 21:52:49 -04:00
PRD 0051: Launch selector
didericis-claude commented on pull request didericis/bot-bottle#172 2026-06-03 21:47:48 -04:00
PRD 0049: Named / Labelled Agents

Superseded by PR #184 (prd-0051-named-labelled-agents). Renumbered to PRD 0051 and updated for the contrib architecture from PRD 0050 / PR #180.

didericis-claude closed pull request didericis/bot-bottle#172 2026-06-03 21:47:43 -04:00
PRD 0049: Named / Labelled Agents
didericis-claude created pull request didericis/bot-bottle#184 2026-06-03 21:47:38 -04:00
PRD 0051: Named / Labelled Agents
didericis-claude commented on pull request didericis/bot-bottle#180 2026-06-03 21:30:38 -04:00
PRD 0050: Move provider-specific agent logic into contrib

You were right — workspace_plan was the only place guest_home lived, and reading it through plan.workspace_plan.guest_home was the wrong layer. Hoisted in 21a46b97d8f35734fa23165ee2b94d1268ddb8d3: guest_home: str is now a field on the base BottlePlan dataclass, populated by each backend's prepare step. The contrib providers, this gitconfig path, and the smolmachines _guest_home() helper all read plan.guest_home directly.

didericis-claude created pull request didericis/bot-bottle#183 2026-06-03 21:26:37 -04:00
Research: local Ollama deployment, harness selection, and model sizing
didericis-claude commented on pull request didericis/bot-bottle#180 2026-06-03 21:12:22 -04:00
PRD 0050: Move provider-specific agent logic into contrib

Done in b2dc5fd20bcbfbc5dcf0def096a3fd0cb447105c — GUEST_HOME is gone from agent_provider.py, guest_home is a required kwarg on provision_plan (no default), and the _SKILLS_DIR / _PROMPT_PATH constants in both contrib providers are gone too. The providers now derive in-guest paths from plan.workspace_plan.guest_home at call time, which the backend's prepare step populates.