Agent Skills
› fanfan-de/anybox
› sharepoint-shared-doc-maintenance
sharepoint-shared-doc-maintenance
GitHub用于维护SharePoint共享文档,通过对比源文档差异,精准同步时间线、里程碑等变更。优化最小化补丁更新,确保多文档综合时的准确性与时效性。
Trigger Scenarios
用户希望跨文档综合信息
需要同步源文档到共享文档
需要针对性更新已维护的共享文档
Install
npx skills add fanfan-de/anybox --skill sharepoint-shared-doc-maintenance -g -y
SKILL.md
Frontmatter
{
"name": "sharepoint-shared-doc-maintenance",
"description": "Maintain shared SharePoint strategy, roadmap, planning, or status documents from changing source documents. Use when the user wants cross-document synthesis, source-of-truth propagation, or targeted updates to a maintained shared document."
}
SharePoint Shared Doc Maintenance
Overview
Use this skill when the job is not just editing one document, but keeping a maintained shared document aligned with newer source documents. Optimize for finding the real delta and applying the smallest necessary patch.
Core Workflow
- Identify the maintained document.
- Identify the likely source documents that feed it.
- Compare timestamps so you know which sources changed after the maintained document's last update.
- Fetch only the maintained document plus the changed source docs.
- Extract the concrete delta:
- timeline shifts
- milestone changes
- new risks
- updated owners
- revised launch dates
- removed commitments
- Decide whether the maintained document needs:
- no change
- a targeted insertion
- a broader section rewrite
- Apply the smallest edit that fully propagates the source change.
- Re-fetch and verify that the maintained document now reflects the new source-of-truth details in the right section.
Synthesis Rules
- Treat maintenance as a distinct workflow, not as generic document summarization.
- For roadmap and milestone maintenance, prefer concrete propagation over broad re-summarization.
- Use modification timestamps as a triage tool, not as proof of substantive change.
- For multi-document synthesis requests, verify the source set before writing. If the user asks for a consolidated strategy or a summary of all related materials, enumerate the source documents explicitly and verify that likely variants were not skipped.
- Even if you expect only one source to have changed, enumerate the source set so you do not miss a second updated input.
Verification
- Verification should confirm both the new fact and its placement in the document.
- Do not stop at proving a changed year, date, or milestone appears somewhere. Confirm it appears in the roadmap, recommendations, timing discussion, or risk framing where readers would expect it.
- If the maintained document is already on a low-fidelity fallback format because of connector limits, favor precise content patches over broad structural rewrites.
Recovery Notes
- Optimize for quick triage:
- list likely source docs once
- use modification times to narrow the fetch set
- fetch only the maintained doc plus changed sources
- extract the exact delta before editing
- avoid rewriting unaffected sections
- If a changed source contains a strong explicit marker such as
UPDATE,TIMELINE CHANGED, revised year ranges, or renamed milestones, treat that as a high-confidence propagation target.
Version History
- 08dc189 Current 2026-07-05 19:06


