xuefeng-method

Guides AI-native product development with multi-agent design, drift detection, and rapid calibration.

706|130|Updated Oct 31, 2025
One-click install
npx skills add https://github.com/staruhub/ClaudeSkills --skill xuefeng-method
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: xuefeng-method
Source: https://github.com/staruhub/ClaudeSkills/tree/main/skills/Geek-skills-xuefeng-method
Command: npx skills add https://github.com/staruhub/ClaudeSkills --skill xuefeng-method

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Building AI-native products (AI assistants, conversational tools, AI-driven recommendations) fails when teams try to exhaustively enumerate user behaviors or demand 95% accuracy before launch. This Skill provides a complete methodology for products where user behavior is open-ended, model output is probabilistic, and the model drives core decisions.

Core Features & Use Cases

  • Product Type Triage: A step-zero checklist distinguishes +AI (deterministic, route to keqian-method) from AI-native (open-ended) products so you pick the right methodology before writing any code.
  • Multi-Agent Architecture: Design specialized agents (understanding, execution, verification, expression) with a split/merge decision matrix and model routing per agent.
  • Drift Detection & Calibration: Four drift signals (output distribution shift, satisfaction decline, anomaly rates, inter-agent inconsistency) with a three-level calibration protocol from prompt iteration to architecture changes.
  • Use Case: You are building an AI calendar assistant where users type free-form requests. Use this Skill to cluster behaviors into 5-15 patterns, design graceful degradation, ship at 80% quality, and set up daily behavior audits to catch model drift.

Quick Start

Use the xuefeng-method skill to design the development plan for my AI calendar assistant with open-ended user input.

Frequently Asked Questions about xuefeng-method

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I develop an AI-native product with unpredictable user behavior?

Replace exhaustive case enumeration with behavioral clustering: group user actions into 5-15 typical patterns, design an AI response strategy per cluster, and add graceful degradation for edge cases. Ship at 80% quality and iterate using real user feedback.

How should I split work across multiple AI agents?

Assign each agent exactly one responsibility, such as understanding, execution, verification, or expression. Split when functions are orthogonal with independent validation criteria; avoid splitting when there are context dependency chains or complex merge alignment requirements.

How do I detect model drift in production AI products?

Monitor four signals: output distribution shift versus baseline, declining user satisfaction, rising anomaly rates like timeouts and hallucinations, and inter-agent inconsistency. Compare current output statistics against a first-week baseline and alert when drift scores exceed thresholds.

When should I use xuefeng-method instead of keqian-method?

Use xuefeng-method when user input is open-ended, AI drives core decisions, and outputs are probabilistic. Use keqian-method when scenarios are well-defined with enumerable input-output combinations. Hybrid products can apply both per module.

Why is exhaustive testing impractical for AI-native products?

Open user behavior multiplied by probabilistic model outputs and dynamic context creates combinatorial explosion that cannot be enumerated. Use property-based checks like verifying output belongs to an acceptable set instead of asserting exact equality.

How do I choose and route models for different agents?

Route by task type: codex models for pure coding, general flagship models for mixed reasoning, and lightweight models for simple execution to control cost. Compact context before hitting dumb-zone thresholds, around 0.5 of the window for domestic models and 0.7 for top international models.