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 LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Tym Rabchuk
Copyright (c) 2026 Tym Rabchuk

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions test/hooks_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,14 @@ else
fail "slash bridge emitted output without DEVKIT_ROOT"
fi

agent=$(cd "$DEVKIT_ROOT" && DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" researcher 2>/dev/null || true)
agent=$(DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" researcher 2>/dev/null || true)
if printf '%s' "$agent" | grep -q 'Recommended Codex subagent type: explorer'; then
pass "agent mapper works"
else
fail "agent mapper failed"
fi

worker_agent=$(cd "$DEVKIT_ROOT" && DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" builder 2>/dev/null || true)
worker_agent=$(DEVKIT_ROOT="$DEVKIT_ROOT" bash "$ROOT/codex/agent-prompt.sh" builder 2>/dev/null || true)
if printf '%s' "$worker_agent" | grep -q 'Recommended Codex subagent type: worker'; then
pass "agent mapper handles multiline tools"
else
Expand Down
Loading