feat: add session persistence, state management commands, and --new-tab click (#184)

Rebased and fixed implementation of PR #184 features on current main:

Session persistence:
- --session-name flag and AGENT_BROWSER_SESSION_NAME env var auto-save/restore
  cookies and localStorage across browser restarts
- State files stored in ~/.agent-browser/sessions/ with owner-only permissions
- AES-256-GCM encryption via AGENT_BROWSER_ENCRYPTION_KEY env var
- Auto-expiration of old state files (AGENT_BROWSER_STATE_EXPIRE_DAYS, default 30)

State management commands:
- state list: list saved state files with metadata
- state show <file>: display state summary (cookies, origins, domains)
- state rename <old> <new>: rename state files
- state clear [name] [--all]: clear saved states
- state clean --older-than <days>: delete expired states

New --new-tab flag for click command:
- Opens link href in a new tab instead of navigating the current tab

Security hardening:
- Session name validation prevents path traversal (CLI + daemon)
- safeHeaderMerge prevents prototype pollution in header merging
- WebSocket stream server binds to 127.0.0.1 only
- State files written with 0o600 permissions

Fixes applied over the original PR:
- Use color.rs module instead of hardcoded ANSI escape codes
- Align CLI output field names with daemon response format
- Add CLI-level --session-name validation (not just daemon-side)
- Avoid adding "DOM" to tsconfig.json lib (use proper typing in evaluate)
- Keep version at 0.9.3 (matches current main)
- Centralize session name validation in daemon.ts helper
- Update all documentation (README, SKILL.md, docs site, --help output)

Co-authored-by: Chris Tate <chris@ctate.dev>
This commit is contained in:
Aman pandit
2026-02-13 11:56:20 -06:00
committed by GitHub
co-authored by Chris Tate
parent cdd10ebb54
commit 697b788af0
21 changed files with 1989 additions and 40 deletions
+32
View File
@@ -64,6 +64,7 @@ const clickSchema = baseCommandSchema.extend({
button: z.enum(['left', 'right', 'middle']).optional(),
clickCount: z.number().positive().optional(),
delay: z.number().nonnegative().optional(),
newTab: z.boolean().optional(),
});
const typeSchema = baseCommandSchema.extend({
@@ -390,6 +391,32 @@ const stateLoadSchema = baseCommandSchema.extend({
path: z.string().min(1),
});
const stateListSchema = baseCommandSchema.extend({
action: z.literal('state_list'),
});
const stateClearSchema = baseCommandSchema.extend({
action: z.literal('state_clear'),
sessionName: z.string().optional(),
all: z.boolean().optional(),
});
const stateShowSchema = baseCommandSchema.extend({
action: z.literal('state_show'),
filename: z.string().min(1),
});
const stateCleanSchema = baseCommandSchema.extend({
action: z.literal('state_clean'),
days: z.number().int().positive(),
});
const stateRenameSchema = baseCommandSchema.extend({
action: z.literal('state_rename'),
oldName: z.string().min(1),
newName: z.string().min(1),
});
const consoleSchema = baseCommandSchema.extend({
action: z.literal('console'),
clear: z.boolean().optional(),
@@ -872,6 +899,11 @@ const commandSchema = z.discriminatedUnion('action', [
harStopSchema,
stateSaveSchema,
stateLoadSchema,
stateListSchema,
stateClearSchema,
stateShowSchema,
stateCleanSchema,
stateRenameSchema,
consoleSchema,
errorsSchema,
keyboardSchema,