The complete research orchestration system for AI-native science. What It Does Design Philosophy Architecture (v3.2.2) Quick Start Configuration Roadmap License DARE is not a tool that helps you do research. It is the researcher.
$ npx -y skills add yogsoth-ai/de-anthropocentric-research-engine --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: yogsoth-ai/de-anthropocentric-research-engine
What's inside
Science is dying because the human is in the way. Not through malice. Not through stupidity. Through the structural limitations of a cognitive architecture that evolved to track prey on a savanna, not to unify quantum mechanics and general relativity. Nothing human makes it out of the lab. That is not a threat. It is a liberation. The heaviest chain on science was always the one we called ourselves.
The complete research orchestration system for AI-native science.
DARE is not a tool that helps you do research. It is the researcher. You set the direction โ DARE searches, reads, discovers gaps, generates hypotheses, stress-tests them, designs experiments, and produces executable research specs. Autonomously. Iteratively. Without asking for permission.
This repository is the single-clone distribution of the entire Yogsoth AI research ecosystem: 900+ pure-markdown skills organized as 10 freely-composable research packages, unified under one orchestrator. The packages are fully self-contained โ every skill declares its dependencies inline, with no external imports โ so one clone gets everything. The ecosystem also includes custom MCP servers (semantic-scholar-mcp, wiki-vault) published as npm packages โ this repo declares them as dependencies so npm install pulls everything you need.
The bottleneck in modern research is not data or compute โ it's the human in the loop. Every existing "AI research assistant" still requires a human to decide what to search, what to read, which gaps matter, and which ideas are worth pursuing. DARE removes this bottleneck entirely. The human provides only the initial direction; everything after that is autonomous.
Human desire is mimetic (Girard): researchers don't choose hypotheses rationally โ they imitate what's fashionable. Human institutions filter for conformity, not truth. The result: 90% decline in scientific disruptiveness since 1945 (Park et al., 2023), while researcher headcount exploded. DARE's response is architectural: remove the mimetic agent from the center of the knowledge-production process. The AI has no career to protect, no disciplinary identity to defend, no cognitive ceiling on how many fields it can hold in working memory at once.
The human's role shifts to oracle (providing intuition sparks when consulted) and guardian (maintaining ethical floors and sanity checks). The ceiling is AI ambition. The floor is human wisdom.
For the full philosophical argument, see assets/DE-ANTHROPOCENTRIC.md.
DARE's architecture follows a military command hierarchy โ not because research is war, but because the decomposition pattern is remarkably effective for autonomous multi-stage operations:
Campaign (45+) โ "Take that hill" โ WHAT to research (full research stage)
Strategy (200+) โ "Flank from the east" โ WHEN and WHY (iteration loops, stopping conditions)
Tactic (120+) โ "Squad A cover, B move" โ HOW to combine (orchestrates multiple SOPs)
SOP (500+) โ "Fire, reload, advance" โ HOW to execute (single-responsibility operations)
Each layer has a single concern and calls only the layer directly below it. A Strategy never touches MCP tools directly; a Tactic never decides research direction. This strict layering means every component is independently testable, replaceable, and composable.
Campaigns are the top-level research phases โ north-star-crystallization, knowledge-acquisition, deep-insight, hypothesis-formation, creative-ideation, convergence, stress-test, experiment-execution, knowledge-structuring, ara-from-context. They are freely composed (no fixed order); each campaign owns a complete research phase and defines its own completion criteria, backtrack conditions, and context protocol.
Strategies are the iteration engines within campaigns. A literature survey strategy manages the search-read-reflect loop; a gap analysis strategy manages coverage scoring and saturation detection. Strategies hold state (ledgers, budgets) and decide when to stop.
Tactics combine multiple SOPs into coherent workflows. A "cross-domain collision" tactic orchestrates domain scanning, analogy extraction, forced bridge construction, and blend evaluation into a single creative operation.
SOPs are atomic, single-responsibility operations. Each SOP wraps one conceptual action: run one search, score one hypothesis, extract one analogy. 500+ SOPs provide the granular building blocks that higher layers compose.
Every existing autonomous research system โ AI Scientist v2 (Sakana), AI-Researcher (HKUDS), Agent Laboratory, Dolphin, ARIS โ implements a fixed pipeline: stages execute in a predetermined order, and the agent's autonomy is confined to local decisions within a single stage. Backtracking, when it exists at all, means retrying the current step โ not returning from experiment design to literature review because the knowledge base turned out to be insufficient.
DARE is not a pipeline. It is an arsenal โ a strategy book that the AI reads, then decides how to act.
What this means concretely:
In a pipeline system, the workflow is hardcoded: literature โ gap โ hypothesis โ experiment. The agent has no say in the order, cannot skip stages, and cannot go back. If the experiment phase reveals that the literature review missed a critical subfield, the system has no mechanism to return and fix it.
In DARE, there is no prescribed order. The 10 research packages are freely-composable, self-contained engines; CC reads the research-catalog after the direction is crystallized and decides which packages to invoke, in what sequence, and whether to loop back โ driven by the current research state, not a fixed lifecycle. The Research Spec captures that chosen composition along with backtrack conditions โ explicit rules like "if stress-test invalidates >50% of hypotheses, return to hypothesis-formation." The executing agent has full cross-package routing authority: it reads the spec, assesses the current state, and decides which package to invoke next, which strategies within it to combine, and when the current path has failed hard enough to warrant retreat.
Within each campaign, the agent faces not one method but many. A gap-analysis campaign offers 15+ detection methods (coverage mapping, white-space identification, boundary unfolding, niche analysis...). A creative-ideation campaign offers 31+ generation techniques (SCAMPER, TRIZ, biomimicry, morphological analysis, concept blending...). The agent selects and combines methods based on the research context โ not because "more is better," but because different research problems demand different tools, and a system locked to one approach per phase cannot adapt.
The human's role: approve the spec (including its backtrack conditions and recommended campaign combinations) before execution begins. After that, the agent navigates the research space autonomously within the ยฑ10% deviation bounds defined in the spec. If it needs to deviate further โ backtrack to an earlier stage, skip a stage entirely, or add one โ it asks.
This is the fundamental architectural difference. Pipelines assume the research process is predictable. Arsenals assume it is not.
Traditional research plans are prose documents that humans interpret. DARE produces Research Specs โ documents that are simultaneously human-readable and machine-executable:
- [ ]) tracks progress across sessionsA spec is a contract between the human who approved it and the CC instance that executes it. Session recovery is automatic: read the spec, find the first unchecked box, read the latest context checkpoint, resume.
Research campaigns span multiple sessions. DARE solves the context problem through a structured checkpoint system:
context-init creates a named context file at campaign startcontext-checkpoint appends โฅ500 lines of process + results after each strategycontext/INDEX.md tracks all active context filesNo special "resume" command. The spec's checkbox state IS the progress tracker.
DARE v3.2.2 is a pure-skill architecture. There is no application code, no runtime, no framework. The entire system is 900+ markdown files โ each one a self-contained instruction set that Claude Code reads and executes. The "runtime" is CC itself. The "framework" is two orthogonal axes: 10 freely-composable packages (the composition axis โ pick and combine as the research demands) and, within each package, the four-layer command hierarchy that determines which skill can call which.
This is a deliberate design choice. Skills are infinitely composable, require zero deployment infrastructure, and can be modified by editing a text file. The tradeoff is that execution depends entirely on CC's ability to follow complex multi-step instructions โ which, as of 2026, is more than sufficient for research orchestration.
The orchestrator layer (the engine-core package) sits above the 10 research packages. It does not conduct research โ it manages the lifecycle of research campaigns and decides which packages to compose:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ORCHESTRATOR (9 skills) โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ de-anthropocentric-research- โ โ writing-specs โ โ
โ โ engine (entry point) โ โ (spec generation) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ executing-specs โ โ research-catalog โ โ
โ โ (spec execution loop) โ โ (strategy book + index) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
โ โ spec-self- โ โ scope- โ โ campaign- โ โ constraint- โ โ
โ โ review โ โ clarificationโ โ selection โ โ elicitation โ โ
โ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Inside every package, the skills are organized into exactly four layers. The rule is absolute: each layer calls only the layer directly below it. No exceptions. This same four-layer discipline repeats within each of the 10 packages โ the layers below aggregate the counts across all packages.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ CAMPAIGN (45+) โ
โ Complete research phases with their own completion criteria โ
โ โ
โ north-star-crystallization ยท knowledge-acquisition ยท deep-insight โ
โ hypothesis-formation ยท creative-ideation ยท convergence โ
โ stress-test ยท experiment-execution ยท knowledge-structuring โ
โ ara-from-context โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ STRATEGY (200+) โ
โ Iteration engines with state management and stopping conditions โ
โ โ
โ literature-survey ยท gap-analysis ยท insight ยท red-teaming ยท scoring โ
โ convergence-distillation ยท experiment-design ยท steel-manning โ
โ deep-survey ยท scoping-survey ยท systematic-survey ยท ... โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ TACTIC (100+) โ
โ Multi-SOP workflows that produce coherent intermediate outputs โ
โ โ
โ academic-research ยท web-research ยท cross-domain-collision ยท scamper โ
โ component-surgery ยท morphological-exploration ยท synectics โ
โ biomimicry ยท lateral-thinking ยท concept-blending ยท ... โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ SOP (500+) โ
โ Atomic single-responsibility operations โ
โ โ
โ paper-search ยท citation-chaining ยท gap-identification ยท claim-parsing โ
โ hypothesis-formulation ยท analogy-extraction ยท pairwise-comparison โ
โ assumption-audit ยท falsifiability-check ยท monte-carlo-sampling ยท ... โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ MCP LAYER (7 servers โ external tool access) โ
โ semantic-scholar ยท brave ยท tavily ยท keenable ยท alphaxiv ยท apify ยท wiki โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Campaign layer โ Each campaign represents a complete phase of the research lifecycle. knowledge-acquisition owns everything about gathering information from the world. creative-ideation owns everything about generating novel approaches. Campaigns define what success looks like (completion criteria), when to retreat (backtrack conditions), and how to preserve state (context protocol). A campaign never directly invokes an SOP โ it delegates to strategies.
Strategy layer โ Strategies are where iteration happens. A literature-survey strategy doesn't just search once โ it runs a SEARCH โ READ โ REFLECT โ EVALUATE loop with a state ledger tracking papers found, gaps identified, and coverage percentage. Strategies own quantitative budgets (e.g., "fetch โฅ40 papers for a Medium topic") and hard gates that prevent premature exit. They decide when to stop, when to loop again, and when to escalate to the campaign for a backtrack decision.
Tactic layer โ Tactics are the composition layer. A single tactic combines 3-8 SOPs into a coherent workflow that produces a meaningful intermediate output. The cross-domain-collision tactic, for example, orchestrates: domain-scanning โ organism-discovery โ analogy-extraction โ forced-bridge-construction โ blend-evaluation. Each SOP does one thing; the tactic makes them work together toward a goal.
SOP layer โ The atomic units. Each SOP wraps exactly one conceptual operation: search for papers matching criteria X, score a hypothesis on dimension Y, extract analogies between domains A and B. SOPs are where MCP tools get invoked โ an SOP might call semantic-scholar to fetch citations, or brave-search to find web sources. 500+ SOPs provide the granular vocabulary that higher layers compose into complex research behaviors.
Every skill in this system is a markdown file with YAML frontmatter. No Python. No TypeScript. No configuration DSL. This is intentional:
The MCP servers (semantic-scholar-mcp, wiki-vault, etc.) provide the external tool access that pure markdown cannot โ API calls, database queries, web fetching. But the intelligence โ the decisions about what to search, how to evaluate, when to stop โ lives entirely in the skill layer.
Every skill declares its own dependencies inline. Each SKILL.md carries, in its YAML frontmatter, a dependencies block whose sub-keys (campaigns / strategies / tactics / sops) name the exact lower-layer skills it may call โ clipped to the layers that skill actually uses. There are no external imports and no reverse used-by sprawl: the entire 900+ skill call graph is reconstructable from frontmatter alone, and is machine-verified closed (every declared edge resolves to a real skill โ 2476 / 2476 skillโskill edges). This is what makes the body a true single-clone distribution: clone it, and the whole composition graph travels with it.
de-anthropocentric-research-engine/
โโโ AGENTS.md # Codex routing instructions and DARE entry contract
โโโ install/
โ โโโ codex.sh # Clone-based Codex installer (macOS / Linux)
โ โโโ codex.ps1 # Clone-based Codex installer (Windows PowerShell)
โโโ skills/ # All 900+ skills live here (flat directories)
โ โโโ de-anthropocentric-research-engine/ # Entry point orchestrator
โ โโโ writing-specs/ # Spec generation (strategy level)
โ โโโ executing-specs/ # Spec execution loop
โ โโโ spec-self-review/ # SOP: validate generated specs
โ โโโ scope-clarification/ # SOP: narrow research scope
โ โโโ campaign-selection/ # SOP: pick which packages to compose
โ โโโ constraint-elicitation/ # SOP: surface hidden constraints
โ โโโ research-catalog/ # Capability menu (strategy book)
โ โ โโโ references/ # One skill table per package (10 files)
โ โโโ [890+ more skills] # The 10 self-contained research packages
โโโ context/ # Session context files (gitignored at runtime)
โ โโโ INDEX.md # Context file registry
โโโ tests/
โ โโโ integration-prompt.md # Verification prompt for CI
โโโ mcp.example.json # MCP server configuration template
โโโ package.json # npm dependencies (MCP servers)
โโโ package-lock.json # Locked versions
โโโ assets/
โโโ yogsoth-logo.svg # Project logo
โโโ DE-ANTHROPOCENTRIC.md # Philosophical manifesto
| Server | Package | Type | Purpose |
|---|---|---|---|
| semantic-scholar | @yogsoth-ai/semantic-scholar-mcp | stdio | Paper lookup, citations, references, recommendations, author info (8 tools) |
| wiki-vault | @yogsoth-ai/wiki-vault | stdio | Research knowledge graph โ BM25 search, typed edges, graph traversal (8 tools) |
| brave-search | @brave/brave-search-mcp-server | stdio | Web search, news search, local search, LLM context |
| tavily-search | tavily-mcp | stdio | Web search optimized for LLMs (opt-in alternative to Brave Search) |
| keenable | โ | http | Web search + page fetch, keyless by default (no API key; hosted remote server) |
| apify | @apify/actors-mcp-server | stdio | Full-page web scraping, Google Scholar |
| alphaxiv | โ | http | arXiv paper search, Q&A, PDF queries, code exploration |
The 10 freely-composable research packages, each a self-contained 4-layer engine (campaign โ strategy โ tactic โ SOP):
| Package | Skills | Key Capabilities |
|---|---|---|
| creative-ideation | ~190 | SCAMPER, TRIZ, biomimicry, morphological, lateral thinking, concept blending |
| convergence | ~120 | Multi-criteria scoring, Pareto, pairwise ranking, consensus, steel-manning |
| deep-insight | ~110 | Gap analysis, root-cause drilling, tension mining, boundary & sensitivity analysis |
| stress-test | ~100 | Multi-agent debate, red-teaming, assumption destruction, worst-case, sacred cow |
| knowledge-acquisition | ~100 | Literature survey, patent mining, benchmark archaeology, meta-analysis, baselines |
| experiment-execution | ~90 | Factor design, constraint analysis, scenario planning, implementation planning |
| hypothesis-formation | ~70 | Gap prioritization, abductive/inductive/deductive generation, research questions |
| knowledge-structuring | ~70 | Ontology building, causal modeling, dimensional analysis, argument mapping (wiki vault, inspired by Karpathy's llm-wiki) |
| north-star-crystallization | ~30 | Cold/warm/hot start, direction narrowing, North Star synthesis |
| ara-from-context | 7 | Compile a completed context/ research record into an ARA (4-layer agent-native artifact) + Level-2 epistemic review. Requires external compiler/rigor-reviewer (npx @ara-commons/ara-skills) |
Plus the infrastructure that every package draws on:
| Infrastructure | Skills | Role |
|---|---|---|
| engine-core | 8 | Entry point, writing-specs, executing-specs, research-catalog + 4 orchestration SOPs |
| literature-engine | 3 | Paper discovery, reading protocols, reference exploration |
| context-management | 3 | Context init, checkpoint, session recovery |
| web-browsing | 2 | Web search + full-page reading |
| subagent-spawning | 1 | Parallel research dispatch |
Requires Node.js 22 or newer.
Clone and install dependencies:
git clone https://github.com/yogsoth-ai/de-anthropocentric-research-engine.git
cd de-anthropocentric-research-engine
npm install
Pick your runtime.
Install the DARE project instructions and knowledge base from this clone:
# Install into this repository
./install/codex.sh
# Or install DARE into another project
./install/codex.sh --target /path/to/your/project
Windows PowerShell:
.\install\codex.ps1
.\install\codex.ps1 --target C:\path\to\your\project
The installer creates or updates a marked DARE section in the target project's AGENTS.md without replacing its other project instructions. That section directs Codex to treat .dare/skills as an on-demand research knowledge base, read the DARE orchestrator first, and follow YAML dependencies as the authoritative call graph. It does not install a .agents/skills adapter or register all DARE files as Codex-discovered skills.
.dare/skills, so the target project still works if this clone is deleted.--link only when you explicitly want .dare/skills to point back to this clone.AGENTS.md; existing instructions outside that block are preserved.--dry-run to preview changes..codex/config.toml if needed.Ask Codex to use DARE for a research task:
Use DARE to turn this research direction into an executable Research Spec: ...
Copy mcp.example.json to .mcp.json and fill in your API keys:
cp mcp.example.json .mcp.json
Install the skills so Claude Code can discover them. Skills are auto-discovered from a .claude/skills/ directory โ there is no settings.json path option. Copy (or symlink) every skill into your project's .claude/skills/ (or the user-level ~/.claude/skills/):
# macOS / Linux โ copy
mkdir -p .claude/skills && cp -R skills/* .claude/skills/
# macOS / Linux โ symlink instead (keeps a single source of truth)
mkdir -p .claude/skills
for dir in skills/*/; do ln -s "$(pwd)/$dir" ".claude/skills/$(basename "$dir")"; done
# Windows PowerShell โ copy
New-Item -ItemType Directory -Force .claude\skills | Out-Null
Copy-Item -Recurse skills\* .claude\skills\
Install the required external dependencies. Two packages call skills that live outside this repo โ install them before running those packages:
experiment-execution drives experiments through the superpowers and
ponytail Claude Code plugins. Install both via the plugin marketplace:
/plugin marketplace add anthropics/claude-plugins-official
/plugin install superpowers
/plugin marketplace add DietrichGebert/ponytail
/plugin install ponytail
ara-from-context compiles research into an ARA using the ARA
compiler + rigor-reviewer skills:
npx @ara-commons/ara-skills
Invoke the entry point:
/de-anthropocentric-research-engine
The orchestrator will guide you through North Star crystallization, then generate an executable Research Spec. To execute the spec later, invoke /executing-specs.
You: /de-anthropocentric-research-engine
"I'm interested in improving LLM reasoning faithfulness"
Phase 1 โ North Star Crystallization (warm-start)
โ Dialogue to narrow scope, identify obstacles, decompose goals
โ Output: "Develop methods to detect and correct unfaithful
chain-of-thought reasoning in LLMs, focusing on cases where
the stated reasoning diverges from the model's actual
decision process"
Phase 2 โ Research Spec Generation
โ Structured questions: scope, campaign selection, constraints
โ Pipeline outline presented for your approval
โ Full Research Spec written, self-reviewed, saved to
docs/de-anthropocentric/specs/2026-05-19-cot-faithfulness-spec.md
Later (new session):
You: /executing-specs docs/de-anthropocentric/specs/2026-05-19-cot-faithfulness-spec.md
โ Agent reads spec, executes stage by stage
โ Context checkpoints after each strategy
โ Backtrack if stress-test invalidates hypotheses
โ Final output: complete research design document
@yogsoth-ai/semantic-scholar-mcp)| Variable | Description |
|---|---|
SS_API_KEY | Semantic Scholar API key (optional โ public API works without key at lower rate limits) |
@yogsoth-ai/wiki-vault)| Variable | Description |
|---|---|
VAULT_ROOT | Absolute path to your Obsidian-compatible vault directory |
@brave/brave-search-mcp-server)| Variable | Description |
|---|---|
BRAVE_API_KEY | Brave Search API key |
tavily-mcp) (optional)| Variable | Description |
|---|---|
TAVILY_API_KEY | Tavily API key โ opt-in alternative to Brave Search for web search (1,000 free credits/month) |
No configuration needed. Connects directly to https://api.keenable.ai/mcp and is keyless by default (public endpoint, rate-limited). Setting an optional KEENABLE_API_KEY only lifts the rate limit; it is never required. Provides web search plus page fetch (clean markdown).
@apify/actors-mcp-server)| Variable | Description |
|---|---|
APIFY_TOKEN | Apify API token |
The example passes --telemetry-enabled=false to the Apify server.
Two public X research Actors are documented but not loaded by the example config โ add them to the --tools allowlist yourself if your research question needs them:
Both are paid Actors. Read skills/source-gathering/references/xquik-apify-x-research.md before running either.
Xquik is an independent third-party service. Not affiliated with X Corp. "Twitter" and "X" are trademarks of X Corp.
No configuration needed. Connects directly to https://api.alphaxiv.org/mcp/v1.
Active development continues. Near-term priorities:
The orchestrator of the Yogsoth AI research ecosystem. Built by Pthahnix.
.gitignore
AGENTS.md
assets/
DE-ANTHROPOCENTRIC.md
yogsoth-logo.svg
cli/
.gitignore
bin/
dare.js
package.json
README.md
scripts/
build.js
src/
copy.js
install.js
test/
build.test.js
cli.test.js
copy.test.js
install.test.js
docs/
superpowers/
specs/
2026-07-09-timestamp-script-removal-design.md
install/
codex.ps1
codex.sh
ladder-foundry/
.gitignore
CLAUDE.md
context/
2026-06-30-12-55-blueprint.md
2026-06-30-13-09-codes-reference.md
2026-06-30-13-33-stage1-data-core.md
INDEX.md
demo.py
design/
blueprint.md
docs/
plans/
2026-06-30-stage1-data-core.md
2026-06-30-stage2-persona-core.md
2026-06-30-stage3-run-scripts.md
2026-06-30-stage4-loss-and-optimizer.md
specs/
2026-06-30-stage1-data-core-design.md
2026-06-30-stage2-persona-core-design.md
2026-06-30-stage3-run-scripts-design.md
2026-06-30-stage4-loss-and-optimizer-design.md
generator/
__init__.py
assembler.py
axes.py
cards.py
contract.py
gen_configs.py
interpolator.py
leak_audit.py
weights.py
sandbox/
.gitignore
read_session.py
README.md
settings.local.json.template
SMOKE_RESULT.md
smoke_test.py
stimulus.md
scripts/
apply_weight_update.py
concat_triple.py
gate_eval.py
new_run_id.py
save_transcript.py
trace_emit.py
write_dataset.py
skills/
formated-results/
SKILL.md
formated-specs/
SKILL.md
injection-fidelity/
loss1.schema.json
SKILL.md
ladder-quality-order/
loss2.schema.json
SKILL.md
optimization-loop/
references/
backprop-heuristic.md
gate-thresholds.md
scripts/
loss1.schema.json
loss2.schema.json
run_codex_loss.py
SKILL.md
tests/
test_apply_weight_update.py
test_assembler.py
test_axes.py
test_cards.py
test_concat_triple.py
test_contract.py
test_formated_contract.py
test_gate_eval.py
test_gen_configs.py
test_injection_fidelity.py
test_interpolator.py
test_ladder_quality_order.py
test_leak_audit.py
test_new_run_id.py
test_optimization_loop.py
test_read_session.py
test_references_audit.py
test_run_codex_loss.py
test_save_transcript.py
test_smoke_test.py
test_stage1_handoff.py
test_stage4_audit.py
test_trace_emit.py
test_weights.py
test_write_dataset.py
LICENSE
mcp.example.json
package-lock.json
package.json
paper-reading/
context/
2026-07-29-18-19-paper-reading-pkg-scoping.md
2026-08-06-13-24-carry-forward-v1-findings.md
2026-08-06-16-35-single-paper-reading-sop-research.md
2026-08-07-10-26-sop-menu-final.md
2026-08-07-13-42-sop-pipeline-graph.html
2026-08-07-14-08-sop-graph-coverage-audit.md
2026-08-07-15-15-paper-fetch-sop-design.md
2026-08-07-23-01-sop-io-contract-simulation.md
INDEX.md
docs/
superpowers/
plans/
2026-08-07-io-contract-rework.md
2026-08-07-paper-reading-v2-implementation.md
specs/
2026-08-07-paper-reading-v2-design.md
README.md
scripts/
validate_skill.py
skills/
acu-nugget-recall/
SKILL.md
argumentative-zoning/
SKILL.md
atomic-unit-matching/
prompt.md
SKILL.md
atomic-unit-recall-aggregate/
prompt.md
SKILL.md
atomic-unit-writing/
prompt.md
references/
reading-the-source.md
SKILL.md
claim-label-prediction/
prompt.md
SKILL.md
claim-writing/
prompt.md
SKILL.md
domain-level-judgment/
prompt.md
SKILL.md
dual-column-self-check/
prompt.md
references/
reading-the-source.md
SKILL.md
engineering-config-grading/
prompt.md
references/
reading-the-source.md
SKILL.md
first-pass-skim/
prompt.md
references/
reading-the-source.md
SKILL.md
keshav-three-pass/
SKILL.md
multi-stage-cascade-extraction/
prompt.md
references/
reading-the-source.md
SKILL.md
paper-fetch/
prompt.md
SKILL.md
qalmri/
qalmri-worksheet/
SKILL.md
prompt.md
references/
reading-the-source.md
SKILL.md
qasper-evidence-qa/
prompt.md
references/
reading-the-source.md
SKILL.md
quality-appraisal-checklist/
prompt.md
references/
item-sets.md
reading-the-source.md
SKILL.md
question-framing/
prompt.md
references/
reading-the-source.md
SKILL.md
rationale-selection/
prompt.md
references/
reading-the-source.md
SKILL.md
reforms-grading/
SKILL.md
reporting-standard-checklist/
prompt.md
references/
item-sets.md
reading-the-source.md
SKILL.md
reproducibility-third-party-verification/
prompt.md
SKILL.md
research-question-appraisal/
prompt.md
references/
reading-the-source.md
SKILL.md
rhetorical-structure-quality/
prompt.md
SKILL.md
second-pass-grasp/
prompt.md
references/
reading-the-source.md
SKILL.md
signalling-question-answering/
prompt.md
references/
reading-the-source.md
SKILL.md
star-awarding/
prompt.md
references/
reading-the-source.md
SKILL.md
study-design-tool-gate/
prompt.md
references/
reading-the-source.md
tool-dispatch-table.md
SKILL.md
sum-threshold-scoring/
prompt.md
SKILL.md
template-slot-filling/
prompt.md
references/
reading-the-source.md
SKILL.md
third-pass-deep-read/
prompt.md
references/
reading-the-source.md
SKILL.md
unit-classification/
prompt.md
SKILL.md
unit-segmentation/
prompt.md
references/
reading-the-source.md
SKILL.md
worst-case-lookup/
prompt.md
SKILL.md
tests/
test_paper_fetch_prompt.py
test_validate_skill.py
README.md
scripts/
all-graphs.html
dare_vault/
assemble.py
dispatch_frags.py
select.py
test_assemble.py
test_select.py
data/
ara-from-context.json
context-management.json
convergence.json
creative-ideation.json
deep-insight.json
engine-core.json
experiment-execution.json
hypothesis-formation.json
knowledge-acquisition.json
knowledge-structuring.json
literature-engine.json
north-star-crystallization.json
stress-test.json
subagent-spawning.json
web-browsing.json
fix_skill_names.py
graphs/
context-management.html
convergence.html
creative-ideation.html
deep-insight.html
experiment-execution.html
hypothesis-formation.html
knowledge-acquisition.html
knowledge-structuring.html
literature-engine.html
north-star-crystallization.html
stress-test.html
subagent-spawning.html
web-browsing.html
repo-dependency-graph/
examples/
literature-engine.json
references/
graph-schema.md
layer-rules.md
scripts/
render_graph.py
SKILL.md
scripts/
apply_collisions.py
apply_frontmatter.py
apply_ref_tables.py
build_refs.py
collision-links.json
compute_missing_edges.py
export_structured.py
gen_available_tables.py
gen_collision_links.py
infra-links.json
lib_refactory.py
low-confidence.json
merge_updates.py
missing-updates.json
refresh_ref_descs.py
render_combined.py
render_infra_graph.py
test_apply_collisions.py
test_apply_frontmatter.py
test_apply_ref_tables.py
test_build_refs.py
test_collision_rename.py
test_decollapse.py
test_export_structured.py
test_gen_available_tables.py
test_lib_refactory.py
test_ref_injection.py
test_verify_closure.py
testdata_skill_table.md
verify_closure.py
test_fix_skill_names.py
skills/
abductive-hypothesis-generation/
prompt.md
SKILL.md
ablation-brainstorm/
SKILL.md
ablation-component-mapping/
prompt.md
SKILL.md
ablation-design/
prompt.md
SKILL.md
ablation-execution/
prompt.md
SKILL.md
abp-vulnerability-classification/
prompt.md
SKILL.md
abstraction-extraction/
prompt.md
SKILL.md
abstraction-ladder/
prompt.md
SKILL.md
abstraction-laddering/
prompt.md
SKILL.md
... 1600 moreShowing a partial view of a very large repo.
FAQ
de-anthropocentric-research-engine is a Claude Code plugin with 200 hand-picked skills for automation work, indexed on Flowy. Install it with the command on its page. It includes formated-results, formated-specs, injection-fidelity. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.