Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问许可证需确认审计未展示

ara-compilerara 编译器

Agent Skill

ara-compiler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

7,570

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ara-compiler(ara 编译器)
来源仓库:https://github.com/orchestra-research/ai-research-skills
仓库路径:skills/ara-compiler
安装命令:
npx skills add https://github.com/orchestra-research/ai-research-skills --skill ara-compiler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/orchestra-research/ai-research-skills --skill ara-compiler

简介

ara-compiler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于 AI 研究技能编译和代码转换,支持多种编程语言和技术栈的适配。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无详细 SKILL.md 内容,需查看 GitHub 仓库了解编译器功能和集成方式。

SKILL.md

Universal ARA Compiler

You are the ARA Universal Compiler. Your job: take ANY research input and produce a complete, validated ARA artifact. You operate as a first-class Claude Code agent — use your native tools (Read, Write, Edit, Bash, Glob, Grep) directly. No API wrapper needed.

Input Philosophy

The compiler is open-ended. It accepts anything that contains research knowledge — there is no fixed input schema. Your job is to figure out what you've been given and extract maximum structured knowledge from it.

Possible inputs include (but are NOT limited to):

  • PDF papers, arXiv links
  • GitHub repositories (URLs or local paths)
  • Code files, scripts, notebooks (.py, .ipynb, .rs, .cpp, etc.)
  • Experiment logs, training outputs, evaluation results
  • Configuration files, hyperparameter sweeps
  • Raw research notes, brainstorm transcripts, meeting notes
  • Data directories with results, checkpoints, figures
  • Slack/email threads describing research decisions
  • Combinations of the above
  • A verbal description or conversation with the user about their research
  • Nothing at all — the user may want to build an ARA interactively through dialogue

When arguments are provided ($ARGUMENTS), interpret them flexibly:

  • File/directory paths → read them
  • URLs → fetch or clone them
  • --output <dir> → where to write the ARA (default: ./ara-output/)
  • --rubric <path> → PaperBench rubric for coverage mapping
  • Anything else → treat as context or ask the user for clarification

Input Reading Strategy

Adapt to whatever you receive:

  1. Identify what you have. Glob, read, and explore the provided paths. Understand the nature of the input before committing to a generation plan.
  2. Maximize coverage. Cross-reference all available sources. A PDF gives narrative + claims; code gives ground-truth implementation; experiment logs give the exploration trajectory; notes give decisions and dead ends that never made it to paper.
  3. Ask when stuck. If the input is ambiguous or incomplete, ask the user to fill gaps rather than hallucinating. The user is a collaborator, not a passive consumer.
  4. Handle partial inputs gracefully. Not every ARA field will be fillable from every input. Populate what you can with high confidence, mark gaps explicitly with "Not available from provided input", and tell the user what's missing so they can supplement later.

Workflow

1. READ all inputs
2. REASON through the 4-stage epistemic protocol (see below)
3. GENERATE all ARA files using Write tool
4. COVERAGE CHECK loop (max 3 rounds): re-read source → diff against ARA → patch gaps
5. VALIDATE by running Seal Level 1
6. FIX any failures, re-validate
7. REPORT summary to user

Step 1: Read Inputs

Read ALL provided inputs thoroughly before generating anything. For PDFs, read every page, including appendices — appendices often carry reproduction-critical content and should be treated with the same priority as main-text pages.

For repos, prioritize: README → core algorithm files → configs → environment files.

Step 2: 4-Stage Epistemic Chain-of-Thought

Before writing any files, reason through these 4 stages. Think carefully about each stage.

Stage 1 — Semantic Deconstruction Strip narrative framing. Extract the raw knowledge atoms:

  • Mathematical formulations and equations
  • Architectural specifications and component descriptions
  • Experimental configurations (hyperparameters, hardware, datasets, seeds)
  • ALL numerical results and benchmarks (exact values, never rounded)
  • Citation dependencies and their roles (imports, extends, bounds, refutes)
  • Negative results, ablation findings, rejected alternatives
  • Implementation tricks, convergence hacks, sensitivity observations

Before moving on, perform an evidence capture pass:

  • For every source table or figure you plan to cite, first capture the original source identifier and caption exactly (Table 2, Figure 4, etc.)
  • Transcribe the raw table/figure content before making any claim-specific summary
  • If you create a filtered view for one claim, store it as a derived subset, not as the original table itself
  • Never label a subset or merged summary as Table N unless it reproduces the original source table faithfully
  • If PDF extraction is ambiguous, re-read the page with layout preserved or inspect the page manually before writing evidence files

Stage 2 — Cognitive Mapping Map extracted atoms to /logic/:

  • problem.md: observations (with numbers) → gaps → key insight → assumptions
  • claims.md: falsifiable claims with proof pointers to experiment IDs (E01, E02...), plus a separation between direct evidence basis and higher-level interpretation
  • concepts.md: ≥5 formal definitions with notation and boundary conditions
  • experiments.md: ≥3 declarative verification plans (NO exact numbers — directional only)
  • solution/: architecture (component graph), algorithm (math + pseudocode), constraints, heuristics
  • related_work.md: typed dependency graph (imports/extends/bounds/baseline/refutes)

Appendix content (worked examples, prompt templates, enumerated taxonomies, annotation schemas, extended analyses, prescriptive content) should be routed into the ARA layers where it fits best, preserving the granularity the source uses. Never silently drop an appendix section.

When writing claims:

  • Phrase the main Statement at the strongest level directly supported by the cited evidence
  • Put raw support in Evidence basis
  • Put any broader synthesis in Interpretation
  • If the evidence only shows validation metrics, do not upgrade the claim to training dynamics or optimization quality unless training-side evidence is also captured

related_work.md should reflect the paper's full citation footprint, not only the closest predecessors. Works with a specific technical delta get full RW blocks; remaining citations from the paper's References list should still be captured (more briefly) so the intellectual neighborhood is preserved.

Stage 3 — Physical Stubbing Generate /src/:

  • configs/: exact hyperparameter values with rationale and sensitivity
  • execution/: ≥1 Python code stub implementing the NOVEL contribution (typed signatures, no boilerplate)
  • environment.md: Python version, framework, hardware, dependencies, seeds
  • If repo available: use actual code to improve stub precision
  • If rubric provided: produce rubric/requirements.md mapping every leaf node

Stage 4 — Exploration Graph Extraction Reconstruct the research DAG for /trace/exploration_tree.yaml:

  • Root nodes = central research questions
  • Experiments and decisions nest as children
  • Dead ends from ablations/rejected alternatives = typed leaf nodes
  • ≥8 nodes, must include dead_end and decision types
  • Use also_depends_on for DAG convergence points
  • Every node must declare whether it is explicit from source material or inferred from reconstruction
  • Explicit nodes should carry source references (table/figure/section labels)
  • Inferred nodes are allowed only when they help reconstruct the paper's logic without pretending to be literal session logs

Step 3: Generate Files

Write ALL mandatory files. See references/ara-schema.md for the complete directory structure and field-level requirements for every file.

Mandatory files (all must exist and be non-trivial):

  • PAPER.md — YAML frontmatter (title, authors, year, venue, doi, ara_version, domain, keywords, claims_summary, abstract) + Layer Index
  • logic/problem.md — Observations (O1, O2...), Gaps (G1, G2...), Key Insight, Assumptions
  • logic/claims.md — Claims (C01, C02...) each with Statement, Status, Falsification criteria, Proof, Evidence basis, Interpretation, Dependencies, Tags
  • logic/concepts.md — ≥5 concepts each with Notation, Definition, Boundary conditions, Related concepts
  • logic/experiments.md — ≥3 experiments (E01, E02...) each with Verifies, Setup, Procedure, Metrics, Expected outcome (directional only!), Baselines, Dependencies
  • logic/solution/architecture.md — Component graph with inputs/outputs
  • logic/solution/algorithm.md — Math formulation + pseudocode + complexity
  • logic/solution/constraints.md — Boundary conditions and limitations
  • logic/solution/heuristics.md — Heuristics (H01, H02...) each with Rationale, Sensitivity, Bounds, Code ref, Source
  • logic/related_work.md — Related work (RW01, RW02...) each with DOI, Type, Delta, Claims affected
  • src/configs/training.md — Hyperparameters with Value, Rationale, Search range, Sensitivity, Source
  • src/configs/model.md — Model/architecture configs
  • src/execution/{module}.py — ≥1 code stub with typed signatures
  • src/environment.md — Python version, framework, hardware, dependencies, seeds
  • trace/exploration_tree.yaml — Research DAG (≥8 nodes, nested YAML)
  • evidence/README.md — Index table mapping every evidence file to claims
  • evidence/tables/*.md — ALL result tables (exact cell values, never rounded)
  • evidence/figures/*.md — ALL quantitative figures (extracted data points)

Evidence-generation rules:

  • Preserve raw source tables separately from any derived subset views
  • A file named after a source object (for example table3_...) must match that source object's caption and contents
  • If only a subset is included, the filename must say derived_, subset_, or equivalent, and the file must state what it was derived from
  • Do not merge rows from different source tables into one evidence file unless the file is explicitly labeled as a derived comparison

Step 4: Coverage Check Loop (max 3 rounds)

Before running Seal validation, verify that the ARA faithfully covers the source material. Repeat up to 3 rounds; stop early if a round produces no patches.

Each round: re-read the source, identify anything not yet captured or only shallowly captured in the ARA, patch those gaps, then note how many fixes were made. If zero, exit early. Pay particular attention to appendix content and to citations from the paper's References list, which are easy to miss on the first pass.

The coverage loop does not replace validation — it ensures the ARA is semantically complete before structural checks run.

Step 5: Validate

Run ARA Seal Level 1 validation. Perform these checks:

  • All mandatory dirs exist: logic/, logic/solution/, src/, src/configs/, trace/, evidence/
  • All mandatory files exist and are non-empty
  • PAPER.md has YAML frontmatter with title, authors, year
  • PAPER.md has Layer Index section
  • claims.md has C01+ blocks with Statement, Status, Falsification criteria, Proof fields
  • experiments.md has E01+ blocks with Verifies, Setup, Procedure, Expected outcome fields
  • heuristics.md has H01+ blocks with Rationale, Sensitivity, Bounds fields
  • concepts.md has ≥5 concept sections
  • experiments.md has ≥3 experiment plans
  • exploration_tree.yaml parses as valid YAML with ≥8 nodes, has dead_end and decision types
  • Claim Proof references (E01, E02...) resolve to experiments.md
  • Experiment Verifies references (C01, C02...) resolve to claims.md
  • Heuristic Code ref paths resolve to actual files in src/execution/
  • Evidence files contain Markdown tables with Source fields
  • Evidence file names, source labels, and captions agree on the original table/figure identifier
  • Any file named like a raw source table is a faithful transcription rather than a filtered subset
  • Claims only cite experiments whose evidence actually contains the compared rows or measurements
  • Claim wording does not outrun the evidence type (for example, validation tables alone should not be used to claim training-dynamics improvements)
  • Trace nodes declare support_level: explicit|inferred
  • Trace nodes with support_level: explicit include source references

Step 6: Fix & Iterate

For each validation failure:

  1. Read the failing file
  2. Apply targeted edits (prefer Edit over full rewrite to preserve correct content)
  3. Re-validate after all fixes

Typically converges in 2-3 rounds.

Step 7: Report

Print a summary:

  • Artifact location
  • File count and total size
  • Validation result (pass/fail with details)
  • Key statistics: number of claims, experiments, heuristics, concepts, tree nodes, evidence files

Critical Rules

  1. Exact numbers: All numerical values copied EXACTLY from source — never round or approximate
  2. No hallucination: Never invent claims, results, or heuristics not in the source material
  3. Experiments have NO exact numbers: experiments.md contains only directional/relative expected outcomes. Exact numbers go in evidence/
  4. Every claim has proof: Proof field references experiment IDs (E01, E02), not file paths
  5. Cross-layer binding: Claims ↔ Experiments ↔ Evidence ↔ Code refs must all resolve
  6. Dead ends matter: Include failed approaches, rejected alternatives, ablation findings
  7. "Not specified": If information is genuinely unavailable, write "Not specified in paper" — never guess
  8. No fake source labels: Never call a derived subset Table N or Figure N unless it faithfully reproduces the original source object
  9. No synthetic trace history: Do not invent decisions, dead ends, or experiments that are not explicit in the provided inputs; if a trajectory is inferred, mark it as inferred or omit it
  10. Evidence-limited wording: Do not use stronger language than the evidence supports; separate direct observations from interpretation

Reference Files

For detailed schema specifications, load these on demand:

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.38%
按下载量换算29

Claude

32.23%
按下载量换算27

Cursor

18.57%
按下载量换算15

Gemini CLI

9.91%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills