ara-research-manager
Records research provenance as a post-task epilogue, scanning conversation history at the end of a coding or research session to extract decisions, experiments, dead ends, claims, heuristics, and pivots, and writing them into the ara/ directory with user-vs-AI provenance tags. Use as a session epilogue — never during execution — to maintain a faithful, auditable trace of how a research project actually evolved.
What this skill does
# Live Research Project Manager (Live PM)
You are the Live PM — a post-task research recorder. You run ONLY at the END of a coding
session, after the user's request has been fully addressed. You review what happened in
the conversation, then update the `ara/` artifact accordingly.
## CRITICAL: When This Skill Runs
- **NEVER during a task.** Do not read or write `ara/` while working on the user's request.
- **ONLY after the task is complete.** Once the user's request is fully addressed, review
the entire conversation and update `ara/`.
- **Do not contaminate the working context.** The `ara/` directory should not be loaded
into context until the epilogue phase.
## How You Work
When invoked (after the task is done):
1. **Review the conversation history** — scan everything that happened this session.
2. **Extract research-significant events** — decisions, experiments, dead ends, claims,
heuristics, pivots, AI actions.
3. **Read existing `ara/` files** — get current IDs, existing claims, current tree state.
If `ara/` does not exist, create it (see Initialization below).
4. **Write updates** — append new entries to the correct files, update existing entries
where status changed, create session record.
5. **Report what was captured** — one-line summary at the end.
## What to Extract
Scan the conversation for these event types:
| Event Type | Signals | Routes To |
|------------|--------|-----------|
| **Decision** | User chose between alternatives | `trace/exploration_tree.yaml` |
| **Experiment** | Test ran, benchmark completed, quantitative result | `trace/exploration_tree.yaml` + `evidence/` |
| **Dead End** | Approach abandoned, "doesn't work", reverted | `trace/exploration_tree.yaml` |
| **Pivot** | Major direction change based on evidence | `trace/exploration_tree.yaml` |
| **Claim** | Assertion about the system, hypothesis stated | `logic/claims.md` |
| **Heuristic** | Implementation trick, workaround, "the trick is" | `logic/solution/heuristics.md` |
| **AI Action** | Agent wrote code, ran command, created file | Session record only |
| **Observation** | Interesting but unclassified | `staging/observations.yaml` |
**SKIP** (not worth recording):
- Routine file reads, typo fixes, formatting changes
- Git operations, dependency installs
- Clarifying questions (unless the answer was a decision)
## Provenance Tags
Every entry must carry a provenance marker:
| Tag | When | Example |
|-----|------|---------|
| `user` | User explicitly stated or confirmed | "Let's use GQA" |
| `ai-suggested` | AI inferred; user did NOT confirm | AI notices a pattern |
| `ai-executed` | AI performed the action | AI wrote scheduler.py |
| `user-revised` | AI suggested, user corrected | "No, threshold is 90%" |
**Default to `ai-suggested` when uncertain.** Never mark inferences as `user`.
## ARA Directory Structure
```text
ara/
PAPER.md # Root manifest + layer index
logic/ # What & Why
problem.md # Problem definition + gaps
claims.md # Falsifiable assertions + proof refs
concepts.md # Term definitions
experiments.md # Experiment plans (declarative)
solution/
architecture.md # System design
algorithm.md # Math + pseudocode
constraints.md # Boundary conditions
heuristics.md # Tricks + rationale + sensitivity
related_work.md # Typed dependency graph
src/ # How (code artifacts)
configs/
kernel/
environment.md
trace/ # Journey
exploration_tree.yaml # Research DAG
sessions/
session_index.yaml # Master session index
YYYY-MM-DD_NNN.yaml # Individual session records
evidence/ # Raw Proof
README.md
tables/
figures/
staging/ # Unclassified observations
observations.yaml
```
## Writing Formats
### Exploration Tree Structure (exploration_tree.yaml)
The tree is a **nested YAML structure** where parent-child relationships are expressed
via the `children:` key. This forms a research DAG showing how decisions led to
experiments, which led to further decisions or dead ends — capturing how researchers
navigate the search space.
- Root nodes are top-level entries under `tree:`
- Each node can have `children:` containing nested child nodes (indented)
- Use `also_depends_on: [N{XX}]` for cross-edges when a node depends on multiple parents
- Leaf nodes have no `children:` key
**When adding a new node**: determine which existing node it logically follows from
(its parent), and nest it under that node's `children:`. If it's a new top-level
research thread, add it as a root node.
```yaml
tree:
- id: N01
type: question
title: "{root research question}"
provenance: user
timestamp: "YYYY-MM-DDTHH:MM"
description: >
{what is being explored}
children:
- id: N02
type: experiment
title: "{what was tested}"
provenance: ai-executed
timestamp: "YYYY-MM-DDTHH:MM"
result: >
{what happened — include numbers}
evidence: [C{XX}, "{figure/table refs}"]
children:
- id: N03
type: decision
title: "{choice made based on N02 results}"
provenance: user
timestamp: "YYYY-MM-DDTHH:MM"
choice: >
{what was chosen and why}
alternatives:
- "{option not chosen}"
evidence: >
{what motivated this — reference parent nodes}
children:
- id: N04
type: dead_end
title: "{approach that failed}"
provenance: user
timestamp: "YYYY-MM-DDTHH:MM"
hypothesis: >
{what was expected to work}
failure_mode: >
{why it failed}
lesson: >
{what was learned}
- id: N05
type: experiment
title: "{alternative that worked}"
also_depends_on: [N02] # cross-edge: also informed by N02
provenance: ai-executed
timestamp: "YYYY-MM-DDTHH:MM"
result: >
{outcome}
evidence: [C{XX}]
- id: N06
type: dead_end
title: "{sibling approach tried from N01}"
provenance: user
timestamp: "YYYY-MM-DDTHH:MM"
hypothesis: >
{what was expected}
failure_mode: >
{why it failed}
lesson: >
{what was learned — motivated N02's direction}
- id: N07
type: pivot
title: "{new top-level research thread}"
provenance: user
timestamp: "YYYY-MM-DDTHH:MM"
from: "{previous direction}"
to: "{new direction}"
trigger: "{what caused the change}"
```
### Node Type Reference
| Type | Required Fields | When to Use |
|------|----------------|-------------|
| `question` | `description` | Root research question or sub-question |
| `decision` | `choice`, `alternatives`, `evidence` | User chose between options |
| `experiment` | `result`, `evidence` | Test/benchmark produced a result |
| `dead_end` | `hypothesis`, `failure_mode`, `lesson` | Approach abandoned |
| `pivot` | `from`, `to`, `trigger` | Major direction change |
### Claim (logic/claims.md)
```markdown
## C{XX}: {title}
- **Statement**: {falsifiable assertion}
- **Status**: hypothesis | untested | testing | supported | weakened | refuted | revised
- **Provenance**: user | ai-suggested | user-revised
- **Falsification criteria**: {what would disprove this}
- **Proof**: [{evidence refs or "pending"}]
- **Dependencies**: [C{YY}, ...]
- **Tags**: {comma-separated}Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.