Skip to content

fix: Remove fork context from one-shot uloop tool skills#1909

Merged
hatayama merged 1 commit into
feature/round6-pause-point-improvementsfrom
feature/round6-remove-fork-context
Jul 21, 2026
Merged

fix: Remove fork context from one-shot uloop tool skills#1909
hatayama merged 1 commit into
feature/round6-pause-point-improvementsfrom
feature/round6-remove-fork-context

Conversation

@hatayama

@hatayama hatayama commented Jul 21, 2026

Copy link
Copy Markdown
Owner

Summary

Part of Round-6 pause-point usability improvements (PR-3 of 5, targeting the feature/round6-pause-point-improvements integration branch).

Removes the context: fork frontmatter from the four uloop tool skills that wrap single CLI commands:

  • uloop-simulate-keyboard
  • uloop-simulate-mouse-input
  • uloop-simulate-mouse-ui
  • uloop-execute-dynamic-code

Why

context: fork makes a skill run as a forked subagent that does not receive the caller's task. In the Round-6 field verification sessions (3D voxel sandbox project), invoking these skills through a Skill() call spawned a subagent that only asked "what should I do?" and executed nothing, forcing the agent to fall back to raw uloop CLI calls via Bash. These skills are thin wrappers around one-shot commands and gain nothing from subagent isolation, so they should load inline with the caller's context.

Changes

  • Removed the context: fork line from the four source SKILL.md files under Packages/src/Editor/FirstPartyTools/<Tool>/Skill/.
  • Regenerated .claude/skills/ and .agents/skills/ copies with uloop skills install --claude --agents.

Verification

  • git grep -n "context: fork" -- Packages .claude .agents returns only a historical CHANGELOG entry; no skill file retains the fork context.
  • Skill bodies contain no fork-dependent wording (checked for fork / subagent references).

Review in cubic

Skills marked with "context: fork" run as forked subagents that do not
receive the caller's task, so invoking simulate-keyboard,
simulate-mouse-input, simulate-mouse-ui, or execute-dynamic-code through
a Skill() call stalled asking what to do instead of executing anything
(observed in the Round-6 field verification sessions). These skills wrap
single CLI commands and gain nothing from subagent isolation, so drop
the fork context and let them load inline with the caller's context.

Generated copies under .claude/skills and .agents/skills are regenerated
with "uloop skills install --claude --agents".
@coderabbitai

coderabbitai Bot commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: def30466-1577-4890-ba5b-ea2c8be57f0e

📥 Commits

Reviewing files that changed from the base of the PR and between 958d85d and 2aa5b81.

📒 Files selected for processing (12)
  • .agents/skills/uloop-execute-dynamic-code/SKILL.md
  • .agents/skills/uloop-simulate-keyboard/SKILL.md
  • .agents/skills/uloop-simulate-mouse-input/SKILL.md
  • .agents/skills/uloop-simulate-mouse-ui/SKILL.md
  • .claude/skills/uloop-execute-dynamic-code/SKILL.md
  • .claude/skills/uloop-simulate-keyboard/SKILL.md
  • .claude/skills/uloop-simulate-mouse-input/SKILL.md
  • .claude/skills/uloop-simulate-mouse-ui/SKILL.md
  • Packages/src/Editor/FirstPartyTools/ExecuteDynamicCode/Skill/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateKeyboard/Skill/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateMouseInput/Skill/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateMouseUi/Skill/SKILL.md
💤 Files with no reviewable changes (12)
  • .agents/skills/uloop-simulate-mouse-input/SKILL.md
  • .claude/skills/uloop-simulate-keyboard/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateMouseUi/Skill/SKILL.md
  • .claude/skills/uloop-execute-dynamic-code/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateMouseInput/Skill/SKILL.md
  • .agents/skills/uloop-simulate-mouse-ui/SKILL.md
  • Packages/src/Editor/FirstPartyTools/SimulateKeyboard/Skill/SKILL.md
  • Packages/src/Editor/FirstPartyTools/ExecuteDynamicCode/Skill/SKILL.md
  • .agents/skills/uloop-execute-dynamic-code/SKILL.md
  • .claude/skills/uloop-simulate-mouse-ui/SKILL.md
  • .claude/skills/uloop-simulate-mouse-input/SKILL.md
  • .agents/skills/uloop-simulate-keyboard/SKILL.md

📝 Walkthrough

Walkthrough

Removed context: fork from the YAML frontmatter of twelve mirrored skill documentation files. Existing metadata, frontmatter delimiters, and skill instructions remain unchanged.

Changes

Skill frontmatter cleanup

Layer / File(s) Summary
Remove context metadata
.agents/skills/*/SKILL.md, .claude/skills/*/SKILL.md, Packages/src/Editor/FirstPartyTools/*/Skill/SKILL.md
The skill frontmatter no longer includes context: fork; the remaining documentation and tool definitions are preserved.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the removal of fork context from the uloop tool skill files.
Description check ✅ Passed The description directly matches the changes and explains why the fork context was removed.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feature/round6-remove-fork-context

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@hatayama
hatayama merged commit 64fddf1 into feature/round6-pause-point-improvements Jul 21, 2026
2 checks passed
@hatayama
hatayama deleted the feature/round6-remove-fork-context branch July 21, 2026 05:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant