用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill platform-fix-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field
Context management — pre-compact persistence, threshold alignment, microcompact/circuit breaker detection
Hook enhancements — updatedInput for bash safety prefixes, suppressOutput for verbose blocks, denial-based routing feedback
正在显示 SKILL.md
基于 SOC 职业分类
| name | platform-fix-worker |
| description | Fixes Windows platform issues, path resolution, glob patterns, and cleanup tasks |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Features involving:
Read the feature description and identify the Windows-specific failure.
Reproduce the failure:
For MODULE_NOT_FOUND fixes:
path.resolve() or path.join() with proper cross-platform handlingFor glob pattern fixes:
--test with glob patterns doesn't expand on Windows PowerShellglob package if availableFor init.sh WSL fixes:
#!/usr/bin/env bash shebangcommand -v instead of which for portabilityFor auto-generated JSON determinism:
Write tests for the fix, run platform-specific validation, commit.
{
"salientSummary": "Fixed validate-full-sequential.cjs path resolution: replaced hardcoded Unix paths with path.resolve() for cross-platform support. Fixed test:tools glob by replacing shell glob with programmatic file discovery. All 5 validators now pass on Windows.",
"whatWasImplemented": "Path resolution fix in validate-full-sequential.cjs using path.resolve(). File discovery wrapper in test:tools script replacing shell glob.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{
"command": "pnpm validate:full:parallel",
"exitCode": 0,
"observation": "All validators pass, no MODULE_NOT_FOUND"
},
{
"command": "pnpm test:tools",
"exitCode": 0,
"observation": "15 tool tests executed and passed"
}
],
"interactiveChecks"