corner-case-management

Identifies and isolates edge-case documents using structured JSON registry rules.

13|4|Updated Apr 27, 2026
One-click install
npx skills add https://github.com/memect/kc --skill corner-case-management
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: corner-case-management
Source: https://github.com/memect/kc/tree/main/template/skills/zh/corner-case-management
Command: npx skills add https://github.com/memect/kc --skill corner-case-management

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

边缘案例管理 Skill 将那些不适配主工作流的文档或规则从主流程中分离出来,通过登记、检测与解决方案的机制实现可追踪与可重复的处理策略。

Core Features & Use Cases

  • 边缘案例注册表:在 assets/ 或注册表中维护 corner_cases.json,描述每条边缘案例、检测模式与解决方案。
  • 懒加载与高阈值检索:主工作流先尝试常规处理,只有强烈匹配时才调用注册表执行边缘处理。
  • 演进循环协作:提升为主工作流(promoted)或废弃(deprecated),并记录版本。

Quick Start

将新发现的边缘案例登记到 corner_cases.json 注册表中,并确保未来文档匹配时走冷路径边缘流程。

Frequently Asked Questions about corner-case-management

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

FAQPage Schema
How do I isolate edge-case documents without breaking my main workflow?

To isolate edge-case documents, you can register them in a structured corner_cases.json registry with detection patterns and resolutions, keeping the main workflow clean by routing exceptions to a cold path.

What is the best way to track rare edge cases discovered during iterative workflow testing?

Tracking rare edge cases involves logging them in a documentation registry with fields like description, detection_pattern, resolution, discovered_at, iteration, and status to ensure full traceability and repeatability.

When should I patch my main workflow versus using a separate edge-case registry?

You should use a separate edge-case registry when iterative testing reveals rare cases and patching the main workflow becomes too costly, applying lazy loading with high retrieval thresholds instead.

How does lazy loading work for edge-case management in compliance workflows?

Lazy loading in edge-case management means the main workflow attempts regular processing first, only triggering the corner_cases.json registry to execute edge processing when a strong match is detected.

Can I update the status of a registered edge case as workflows evolve over time?

Yes, registered edge cases support an evolution cycle where their status can be updated to promoted for main workflow integration or deprecated, while recording the version changes for traceability.

Does edge-case management require specific dependencies to maintain compliance traceability?

No specific dependencies are required; edge-case management relies on a structured JSON registry within your assets directory to maintain compliance traceability and document versioning without external tools.