Delegate Kit v2: configurable teams, main preset and conversational setup - #12
Conversation
Добавить настройку команды через диалог, изолированные сессии, адаптеры и контроль зависших исполнителей. Опубликовать main с семью профилями, переписать README, вынести тесты из навыка и удалить устаревший эксперимент v1.
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codex Review SummaryThis comment shows the latest Codex review activity on this pull request.
ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings. |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ced39395c6
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| arguments: meta.resume_of ? { target: meta.transport_session_id, message: prompt } : { | ||
| task_name: `dk_${meta.id.replaceAll('-', '_')}`, message: prompt, fork_turns: 'none', model: e.model, | ||
| ...(e.reasoning === undefined ? {} : { reasoning_effort: e.reasoning }), |
There was a problem hiding this comment.
Bind native Codex writers to the reserved worktree
When a workspace-write profile is prepared with the required linked --cwd, this invocation starts the native agent in the parent chat's workspace and passes no working-directory or workspace binding. The prompt mentioning an absolute path does not change the inherited sandbox root, so a coordinator running from the main checkout can have the agent fail to access the leased worktree or modify the main checkout while the runtime believes the worktree is protected. Reject this native route unless the host capability proves it is already bound to meta.cwd, or pass an enforceable workspace binding supported by the host.
Useful? React with 👍 / 👎.
Delegate Kit v2 replaces coordinator-family routing with complete, user-selected team presets. The current chat remains the coordinator; each named specialist has its own model, execution tool, reasoning level and conditions for use. Multiple profiles can share a role without forming a mandatory pipeline.
The bundled
mainexample reflects the maintainer's working team: Luna research, Sol investigation and implementation, Astra planning and high-risk review, and Qwen UI implementation through OMP/OpenRouter. Conversational setup offers this example, checks the user's choices and saves an agreed default. Installing the skill does not overwrite user configuration or authorize model calls.Changes include:
tests/, outside the installable skill. The obsolete v1 benchmark and stored results were removed. Published comments and prose are in English.Validation: 94 Node tests and 130 shell assertions passed locally. ShellCheck, Node/Bash syntax, JSON validation, skill validation and whitespace checks passed. A copied package successfully ran setup help, saved
main, selected it as default and opened a fresh chat context without model calls.Compatibility remains explicit: several adapters have fixture coverage rather than live account tests. OMP workers currently lack shell/browser tools, so the coordinator performs unavailable UI checks before acceptance. Earlier authorized Codex live tests covered Sol implementation and continuation, Luna review and cancellation; this publication pass made no paid model calls.