粉丝资源:父级 Skill myskill-global 文件内容
粉丝资源父级 Skill myskill-global 文件内容这个资源展示的是一个父级 skill 的最小可用结构。它的作用不是直接完成某个具体任务而是作为全局路由器先判断用户请求属于哪类工作再把任务交给对应的子 skill 或本地工作流文件。目录结构myskill-global/ ├── SKILL.md └── agents/ └── openai.yaml文件一SKILL.md路径myskill-global/SKILL.md内容--- name: myskill-global description: Use this skill as the users global parent orchestrator. It should classify high-level requests, identify the correct workspace or content workflow, find relevant child skills or local workflow files, and route Codex into the right execution path with minimal repeated instruction from the user. This skill should be used when the user expects Codex to automatically understand which custom workflow to use. --- # Myskill Global ## Purpose This is the users global parent skill. Its role is to help Codex: - recognize the type of task - find the correct custom workflow - use child skills when available - otherwise follow folder-contained workflow files The goal is to reduce repeated prompting. ## What This Skill Must Do When the user gives a high-level request, this skill should: 1. classify the task 2. identify the target folder or workspace area 3. identify the likely child skill or workflow 4. choose the most reliable execution path 5. tell Codex what workflow to follow ## Reliability Rule Do not assume every local skill folder is automatically globally triggerable. Use this priority: 1. globally available installed skill 2. target folder workflow files 3. workspace-local child skill as an instruction source If a child skill is not truly auto-triggerable, still use its SKILL.md and related references as the procedural source of truth. ## Current Child Workflow Registry ### Blog Writing When the request is about: - writing a blog - generating Markdown - CSDN article drafting - topic plus notes for public content route to: - target folder: E:\agentssolo\AI_base_mediacraft\csdnnote - child workflow files: - E:\agentssolo\AI_base_mediacraft\csdnnote\AGENTS.md - E:\agentssolo\AI_base_mediacraft\csdnnote\BLOG_REQUEST_PROTOCOL.md - E:\agentssolo\AI_base_mediacraft\csdnnote\BLOG_MD_PRINCIPLES.md - E:\agentssolo\AI_base_mediacraft\csdnnote\AUTHOR_WORKFLOW_INTENT.md - preferred child skill: - E:\agentssolo\AI_base_mediacraft\skills\blog-workflow-pro\SKILL.md Expected deliverable: - a publishable .md file in csdnnote ## How To Think About Child Skills This parent skill is successful if it helps Codex find and use the right custom workflow, even when that workflow is represented by local files rather than direct automatic skill invocation. The user is satisfied with either: - explicit use of a registered child skill - or reliable routing into a folder-contained child workflow ## Blog-Specific Shortcut If the user simply says they want to write a blog, assume: - this is a content-production task - it probably belongs in csdnnote - the blog workflow should be used Do not make the user restate all blog rules each time. ## Output Style This parent skill should not be noisy. Default behavior: - infer - route - execute not: - over-explain routing logic - produce a long meta-plan unless asked ## Success Condition The user should be able to say something short like: - I want to write a blog about this - Turn this into a CSDN post - Help me draft this topic and Codex should automatically move toward the correct child workflow with minimal extra prompting.文件二agents/openai.yaml路径myskill-global/agents/openai.yaml内容interface:display_name:Myskill Globalshort_description:Global parent router for the users custom content workflows.default_prompt:Use $myskill-global to route this request into the correct custom workflow and produce the right deliverable.policy:allow_implicit_invocation:true使用方式把这个目录放到 Codex 能识别的 skills 目录后就可以把它作为父级路由 skill 使用。真正使用时需要根据自己的工作区路径修改SKILL.md里的目标目录、工作流文件和子 skill 路径。父 skill 的重点不是写具体任务而是维护一个任务注册表。例如用户请求写一篇 CSDN 博客 父 skill识别为 Blog Writing 目标目录csdnnote 子流程blog-workflow-pro 交付结果可发布 Markdown 文件后续如果要扩展更多工作流可以继续在Current Child Workflow Registry下面增加新的分类例如Tutorial Writing Code Review PDF Processing PPT Generation Spreadsheet Analysis每个分类只需要写清楚三件事什么时候触发路由到哪里使用哪个子 skill 或本地工作流文件