skills/skillxiv-v0.0.2-claude-opus-4.6/agentcpm-report/SKILL.md
Enable research agents to interleave evidence-based drafting with reasoning-driven deepening, automatically expanding outlines based on discovered gaps, using trajectory pruning for efficient RL training.
npx skillsauth add ADu2021/skillXiv agentcpm-reportInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Existing deep research systems separate planning from writing, limiting adaptive discovery. Agents that rigidly follow pre-planned outlines miss opportunities to refine understanding as evidence emerges. The "insight ceiling" arises from static structure: agents execute plans without evaluating draft quality or identifying knowledge gaps mid-process.
WARP (Writing As Reasoning Policy) interleaves evidence-based drafting with reasoning-driven deepening. Rather than plan-then-write, the agent autonomously:
This mirrors human knowledge-transforming processes where writing reveals what you don't know.
Core cycle (Plan-Draft-Deepen-Decide):
class ResearchAgent:
def __init__(self, query):
self.outline = create_sparse_outline(query)
self.draft = ""
def evidence_based_draft(self):
for section in self.outline:
search_query = contextual_query(self.draft, section)
docs = retrieve_documents(search_query)
section_content = synthesize(docs)
self.draft += section_content
def reasoning_driven_deepen(self):
# Analyze draft for logical gaps
gaps = identify_gaps(self.draft)
confidence = analyze_coverage(self.draft)
if gaps and confidence < threshold:
# Expand insufficient section
section = gaps[0]
self.outline = expand_section(self.outline, section)
return True # Continue
else:
return False # Terminate
Training procedure (3-stage):
Trajectory pruning: Identify optimal stopping points in teacher sequences—the earliest decision point where continuing doesn't improve final report quality. This accelerates training by removing redundant steps.
When to use: Deploy for research tasks requiring iterative knowledge discovery (literature reviews, technical feasibility studies, competitive analysis). Less effective for well-structured tasks with clear boundaries.
Query structuring: Start with complex, multi-part queries; agent naturally decomposes during deepening. Avoid over-specific initial queries.
Convergence signals: Monitor draft-to-outline ratio (well-formed drafts show 5–10× expansion); terminate after 2–3 deepening cycles without gap discovery.
Model scaling: Cold-start SFT works with 8B models; smaller models may require larger teacher datasets. Scaling to 70B improves deepening quality significantly.
The framework uses atomic skill decomposition to train small models on complex agentic reasoning. Trajectory pruning removes ~40% of redundant steps without quality loss, enabling efficient RL on limited data. Small (8B) models achieve competitive performance with appropriate curriculum, demonstrating that multi-stage training is more important than model scale for agentic systems.
testing
Uses flow maps as look-ahead operators to enable principled reward-guided diffusion by predicting trajectory endpoints at any denoising step. Deploy when applying rewards or preferences to diffusion trajectories with meaningful gradients throughout generation.
testing
Train language models where each expert learns independently on closed datasets, enabling flexible inference with selective data inclusion or exclusion. 41% performance improvement while allowing users to opt out of specific data sources without retraining.
data-ai
Understand how token generation flexibility in diffusion LMs paradoxically constrains reasoning, as models exploit ordering flexibility to avoid uncertain tokens, and apply simplified approaches that preserve parallel decoding benefits. Use when optimizing diffusion-based language models for reasoning tasks.
devops
Enable LLM agents to improve continuously during deployment by constructing structured experience libraries through self-reflection on successes and failures—achieving 23% improvement on reasoning without gradient-based parameter updates or external training.