← 返回 Skills 市场
diamond2nv

Competition Task Intelligence

作者 diamond2nv · GitHub ↗ · v0.5.0 · MIT-0
cross-platform ✓ 安全检测通过
38
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install competition-task-intelligence
功能描述
Build and maintain a structured PDE equation registry, analyze competition tasks (difficulty, bottlenecks, score projections), generate strategic recommendat...
使用说明 (SKILL.md)

Competition Task Intelligence

Overview

System for structured PDE equation management and competition task analysis. Provides:

  1. PDE Equation Registry — structured metadata (LaTeX, dimensions, params, datasets) for 11+ PDEs
  2. Task Analysis — per-task difficulty assessment, bottleneck identification, proven strategy catalog
  3. Score Projection — optimistic/expected/conservative score estimates with confidence levels
  4. Strategic Advising — which task to focus on, suggested schedule, rationale
  5. CLI + MCPexpflow analyze command group and MCP tools

Installation

pip install expflow-pde

Architecture

expflow_pde/equations.py     ──── PDE equation static registry (11+ equations)
expflow_pde/analyze.py       ──── Analysis engine (task intelligence, strategy)
expflow_pde/cli_analyze.py   ──── CLI: analyze task/equations/status/advise
expflow_pde/mcp_server.py    ──── MCP: exp_compare_scores, exp_list_workers

1. PDE Equation Registry

Each equation entry in EQUATIONS dict includes: full name, LaTeX, dimensions, parameters, competition task mapping, metrics, solver, data samples, and competition info.

API

from expflow_pde.equations import (
    get_equations(),                    # All 11+ equations
    get_equation(name),                 # Single equation
    list_equations_for_task(task_id),   # task1/task2/task3
    get_equation_metrics(name, task),   # Relevant STANDARD_METRICS
    list_equation_names(),              # Sorted names
    list_competition_equations(),       # Only competition equations
)

2. Task-Level Intelligence

CLI

# Strategic advising (primary entry point)
expflow analyze advise

# Per-task analysis
expflow analyze task task1
expflow analyze task task3

# Equation reference
expflow analyze equations --task competition

# Competition overview
expflow analyze status

Example Output

expflow analyze status

Task     Score              Difficulty     Status         Priority
  ────────────────────────────────────────────────────────────────────
  task1    142/150            🟡 medium       🔴 In Progress  high
  task2    -/150              🔴 hard         ⚪ Not Started  low
  task3    -/350              🔥 very_hard    ⚪ Not Started  medium

  总分: 142/650  (508 pts remaining)

Score Estimation

from expflow_pde.analyze import estimate_score_potential, get_strategic_recommendation

estimates = estimate_score_potential("task1")
# Returns: {"optimistic": 148, "expected": 145, "conservative": 140, "confidence": "high"}

rec = get_strategic_recommendation()
# Returns: {"primary_focus": "task1", "remaining_headroom": {...}, "suggested_schedule": {...}}

Difficulty Classification

Label Icon Example Meaning
easy 🟢 Baseline tasks High confidence, proven methods exist
medium 🟡 Task 1 Known bottlenecks, clear path forward
hard 🔴 Task 2 Multiple unknown challenges
very_hard 🔥 Task 3 (KS) Chaotic dynamics, exponential error growth

Integration with Other Systems

With experiment-lifecycle-governance

compare-scores gating builds on equation metrics from this system. When adding a new equation, its metrics must exist in STANDARD_METRICS for gating to work.

With analyze-experiment-autoregressive-degradation

Chain: analyze advise → decide task → run experiment → analyze degradation → feed back to _TASK_META.

Pitfalls

  1. _TASK_META becomes stale — hardcoded scores must be updated after each submission
  2. Competition deadline hardcodedget_strategic_recommendation() has remaining_days from 2026-05-27
  3. Scoring formula duplication — Task 3 formulae are in both equations.py and analyze.py; keep synced
  4. No clearml import in analyzeanalyze.py uses only pure Python/stdlib for fast CLI startup
安全使用建议
Treat this as a limited review result: installation should wait for a successful artifact inspection if you need a high-confidence ClawScan decision.
能力评估
Purpose & Capability
Artifact contents were not readable through the available workspace tool, so purpose and capability coherence could not be validated beyond the absence of supplied negative artifact evidence.
Instruction Scope
No artifact instructions were available for review, so no instruction-scope concern is supported by evidence.
Install Mechanism
Install metadata and artifact files could not be inspected, so no install-mechanism concern is evidence-backed.
Credentials
No accessible artifact evidence showed disproportionate environment access.
Persistence & Privilege
No accessible artifact evidence showed persistence, privilege escalation, credential handling, or background operation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install competition-task-intelligence
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /competition-task-intelligence 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.5.0
- Introduced comprehensive PDE equation registry with detailed metadata for 11+ equations. - Added task-level analysis: difficulty assessment, bottleneck identification, and strategy recommendations. - Implemented scoring projections with optimistic, expected, and conservative estimates. - Launched strategic advising tools via both CLI (`expflow analyze`) and MCP interfaces. - Improved integration points with related experiment governance and analysis systems.
元数据
Slug competition-task-intelligence
版本 0.5.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Competition Task Intelligence 是什么?

Build and maintain a structured PDE equation registry, analyze competition tasks (difficulty, bottlenecks, score projections), generate strategic recommendat... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 38 次。

如何安装 Competition Task Intelligence?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install competition-task-intelligence」即可一键安装,无需额外配置。

Competition Task Intelligence 是免费的吗?

是的,Competition Task Intelligence 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Competition Task Intelligence 支持哪些平台?

Competition Task Intelligence 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Competition Task Intelligence?

由 diamond2nv(@diamond2nv)开发并维护,当前版本 v0.5.0。

💬 留言讨论