Skip to main content

status

Implement — Show experiment dashboard with results, active loops, and progress.

설치로 이동

소스 정보

저장소
thiagofernandes1987-create/APEX
최근 소스 활동
2026년 4월 18일 09:35
감지된 SKILL.md 언어
영어
스타
2
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
status
description
Implement — Show experiment dashboard with results, active loops, and progress.
command
/ar:status
executor
LLM_BEHAVIOR
skill_id
engineering.cs_engineering.autoresearch_agent.status
status
ADOPTED
security
{"level":"standard","pii":false,"approval_required":false}
anchors
["engineering","visualization","research"]
tier
2
input_schema
[{"name":"code_or_task","type":"string","description":"Code snippet, script, or task description to process","required":true}]
output_schema
[{"name":"result","type":"string","description":"Primary output from status"}]
# /ar:status — Experiment Dashboard Show experiment results, active loops, and progress across all experiments. ## Usage ``` /ar:status # Full dashboard /ar:status engineering/api-speed # Single experiment detail /ar:status --domain engineering # All experiments in a domain /ar:status --format markdown # Export as markdown /ar:status --format csv --output results.csv # Export as CSV ``` ## What It Does ### Single experiment ```bash python {skill_path}/scripts/log_results.py --experiment {domain}/{name} ``` Also check for active loop: ```bash cat .autoresearch/{domain}/{name}/loop.json 2>/dev/null ``` If loop.json exists, show: ``` Active loop: every {interval} (cron ID: {id}, started: {date}) ``` ### Domain view ```bash python {skill_path}/scripts/log_results.py --domain {domain} ``` ### Full dashboard ```bash python {skill_path}/scripts/log_results.py --dashboard ``` For each experiment, also check for loop.json and show loop status. ### Export ```bash # CSV python {skill_path}/scripts/log_results.py --dashboard --format csv --output {file} # Markdown python {skill_path}/scripts/log_results.py --dashboard --format markdown --output {file} ``` ## Output Example ``` DOMAIN EXPERIMENT RUNS KEPT BEST CHANGE STATUS LOOP engineering api-speed 47 14 185ms -76.9% active every 1h engineering bundle-size 23 8 412KB -58.3% paused — marketing medium-ctr 31 11 8.4/10 +68.0% active daily prompts support-tone 15 6 82/100 +46.4% done — ``` --- ## Why This Skill Exists Implement — Show experiment dashboard with results, active loops, and progress. <!-- SR_40: auto-generated from frontmatter `purpose`/`description` (OPP-Phase3). Expand with domain-specific rationale. --> ## When to Use Use this skill when the task requires status capabilities. <!-- SR_40: auto-generated from frontmatter `when`/`description` (OPP-Phase3). --> ## What If Fails If this skill fails to produce the expected output: (1) verify input completeness, (2) retry with more specific context, (3) fall back to the parent workflow without this skill. <!-- SR_40: auto-generated from frontmatter `what_if_fails` (OPP-Phase3). -->
GitHub에서 보기