在设计完成后,为缺乏上下文的工程师生成可执行的详细实施计划。
该技能材料显示其为纯提示词型、开源来源、无密钥且无声明远程端点,整体风险较低。需注意 README 中包含面向宿主代理的指令性文字和文件路径规划要求,存在一定提示注入/误导可能,但未见代码执行、数据外发或凭证滥用红旗。
材料明确标注不需要密钥或环境变量,未见要求读取、存储或传输凭证的描述,因此凭证泄露或滥用风险低。
未声明任何远程端点,且系统检查项标记为 prompt-only;从材料事实看不涉及将用户数据发送到外部服务。
作为技能提示文本,其 README 含有“Add the following steps to your Todo list using TodoWrite”等面向代理的操作性指令,虽未直接提供可执行代码或安装步骤,但存在影响宿主代理行为的提示注入倾向,应谨慎对待。
材料鼓励生成包含精确文件路径的实现计划,并提到绝对路径与 worktree,但同时明确“Do not write a file to disk unless explicitly asked”。未见主动读写数据能力声明;主要风险在于可能诱导代理关注本地代码结构与路径信息,而非直接过度授权。
来源标注为 GitHub 开源仓库,可审计性是正面因素;但社区采用为 0 star、许可证未声明、维护状态未知,降低了来源可信度。未见闭源、可疑下载脚本或不明依赖等高风险红旗。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "writing-plans" 技能: 1. 下载 https://raw.githubusercontent.com/microsoft/FluidFramework/main/.agency/plugins/nori/skills/writing-plans/SKILL.md 2. 保存为 ~/.claude/skills/writing-plans/SKILL.md 3. 装好后重载技能,告诉我可以用了
我们已经完成“团队成员邀请”功能设计,请基于以下需求为工程师写一份详细实施计划:包含推荐修改的文件路径、前后端任务拆解、关键数据结构、接口定义、完整代码示例、迁移步骤、测试与验证清单。假设执行者对当前代码库和业务背景几乎不了解。需求如下:……
一份面向陌生代码库执行者的完整实施方案,含步骤、文件位置、示例代码与验收方法。
请把这份产品方案转成工程实施文档,输出应包含:实施目标、依赖前提、按模块划分的开发任务、每步涉及的文件路径、伪代码或真实代码示例、异常处理建议、测试用例以及上线前检查项。默认读者是刚加入项目的工程师。产品方案如下:……
结构化的工程落地文档,帮助新人按文档独立完成开发与自测。
我们要重构现有认证模块,请输出详细执行路线:先解释当前目标和边界,再给出分阶段任务、每阶段涉及的文件路径、关键改动示例、风险点、回滚方案、验证步骤和测试策略。假设工程师不了解现有认证实现。背景信息如下:……
一份分阶段、可回滚、可验证的重构计划,降低陌生工程师执行风险。
Create a comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD.
Assume they are a talented developer. However, assume that they know almost nothing about our toolset or problem domain. Assume they don't know good test design very well.
Do not add code, but include enough detail that the necessary code is obvious.
Do not write a file to disk unless explicitly asked.
Every plan MUST start with this header:
# [Feature Name] Implementation Plan
**Goal:** [One sentence describing what this builds]
**Architecture:** [2-3 sentences about approach]
**Tech Stack:** [Key technologies/libraries]
---
Every plan MUST have a test section. This should be written first, and should document how you plan to test the behavior.
**Testing Plan**
I will add an integration test that ensures foo behaves like blah. The
integration test will mock A/B/C. The test will then call function/cli/etc.
I will add a unit test that ensures baz behaves like qux...
You should end EVERY testing plan section by writing:
NOTE: I will write *all* tests before I add any implementation behavior.
<system-reminder>Your tests should NOT contain tests for datastructures or types. Your tests should NOT simply test mocks. Always test actual behavior.</system-reminder>
<required> For each test, follow this checklist: - Ensure that the test does not just test mocks. If it does, remove the test and try again. - Ensure the test does not test implementation detail. If it does, rewrite the test so that it tests boundary behavior. - Ensure the test does not test data structure format or types. If it does, remove the test and try again. - Ensure the test does not test for removed behavior. For example, if some behavior has been deprecated, do not write a test that simply confirms the behavior no longer works. - Evaluate if the test treats the interior of the test boundary as a blackbox. You should not know anything about interior variables, function calls, or control flow. </required>Every plan MUST end with this footer:
**Testing Details** [Brief description of what tests are being added and how they specifically test BEHAVIOR and NOT just implementation]
**Implementation Details** [maximum 10 bullets about key details]
**Question** [any questions or concerns that may be relevant that need answers]
---
在代码改动完成后,快速整理并更新对应技术文档与说明内容。
在编写或修改测试时识别反模式,避免错误 mock 与污染生产代码。
为 Copilot 创建的 PR 自动触发 ADO CI 流水线运行与验证。
帮助你严谨评估代码评审意见,澄清疑点后再决定是否采纳与实现
通过先写失败测试再实现代码,帮助稳定完成功能开发与缺陷修复。
用四阶段系统化排查框架定位缺陷根因,再制定可靠修复方案。
为工程师生成分步实施计划,帮助在陌生代码库中快速落地任务。
根据需求先拆解多步骤任务,生成清晰可执行的实施计划
审查实现计划中的遗漏、假设与步骤顺序,降低后续开发返工风险
帮助团队为智能体驱动开发制定目标导向计划并保留审计记录。
按批次执行详细计划并设置复核检查点,帮助任务稳步推进与纠偏
将 Notion 规格说明转为实施计划、任务拆解与进度跟踪。