edge-strategy-designer

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Edge Strategy Designer

Edge Strategy Designer

Overview

概述

Translate concept-level hypotheses into concrete strategy draft specs. This skill sits after concept synthesis and before pipeline export validation.
将概念层面的假设转化为具体的策略草案规范。 本Skill位于概念合成之后、流水线导出验证之前。

When to Use

使用场景

  • You have
    edge_concepts.yaml
    and need strategy candidates.
  • You want multiple variants (core/conservative/research-probe) per concept.
  • You want optional exportable ticket files for interface v1 families.
  • 你拥有
    edge_concepts.yaml
    文件,需要生成候选策略。
  • 你希望为每个概念生成多种变体(核心/保守/研究探索型)。
  • 你需要为v1系列接口生成可导出的可选工单文件。

Prerequisites

前置条件

  • Python 3.9+
  • PyYAML
  • edge_concepts.yaml
    produced by concept synthesis
  • Python 3.9+
  • PyYAML
  • 由概念合成生成的
    edge_concepts.yaml
    文件

Output

输出内容

  • strategy_drafts/*.yaml
  • strategy_drafts/run_manifest.json
  • Optional
    exportable_tickets/*.yaml
    for downstream
    export_candidate.py
  • strategy_drafts/*.yaml
  • strategy_drafts/run_manifest.json
  • 可选的
    exportable_tickets/*.yaml
    ,供下游的
    export_candidate.py
    使用

Workflow

工作流程

  1. Load
    edge_concepts.yaml
    .
  2. Choose risk profile (
    conservative
    ,
    balanced
    ,
    aggressive
    ).
  3. Generate per-concept variants.
  4. Export v1-ready ticket YAML when applicable.
  5. Hand off exportable tickets to
    skills/edge-candidate-agent/scripts/export_candidate.py
    .
  1. 加载
    edge_concepts.yaml
    文件。
  2. 选择风险配置文件(
    conservative
    balanced
    aggressive
    )。
  3. 为每个概念生成变体。
  4. 在适用时导出兼容v1的工单YAML文件。
  5. 将可导出工单交付给
    skills/edge-candidate-agent/scripts/export_candidate.py

Quick Commands

快速命令

Generate drafts only:
bash
python3 skills/edge-strategy-designer/scripts/design_strategy_drafts.py \
  --concepts /tmp/edge-concepts/edge_concepts.yaml \
  --output-dir /tmp/strategy-drafts \
  --risk-profile balanced
Generate drafts + exportable tickets:
bash
python3 skills/edge-strategy-designer/scripts/design_strategy_drafts.py \
  --concepts /tmp/edge-concepts/edge_concepts.yaml \
  --output-dir /tmp/strategy-drafts \
  --exportable-tickets-dir /tmp/exportable-tickets \
  --risk-profile conservative
仅生成草案:
bash
python3 skills/edge-strategy-designer/scripts/design_strategy_drafts.py \
  --concepts /tmp/edge-concepts/edge_concepts.yaml \
  --output-dir /tmp/strategy-drafts \
  --risk-profile balanced
生成草案+可导出工单:
bash
python3 skills/edge-strategy-designer/scripts/design_strategy_drafts.py \
  --concepts /tmp/edge-concepts/edge_concepts.yaml \
  --output-dir /tmp/strategy-drafts \
  --exportable-tickets-dir /tmp/exportable-tickets \
  --risk-profile conservative

Resources

相关资源

  • skills/edge-strategy-designer/scripts/design_strategy_drafts.py
  • skills/edge-strategy-designer/references/strategy_draft_schema.md
  • skills/edge-candidate-agent/scripts/export_candidate.py
  • skills/edge-strategy-designer/scripts/design_strategy_drafts.py
  • skills/edge-strategy-designer/references/strategy_draft_schema.md
  • skills/edge-candidate-agent/scripts/export_candidate.py