Aria_moltbot aria-research

๐Ÿ“ฐ Research and information gathering for Journalist

install
source ยท Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code ยท Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/research" ~/.claude/skills/najia-afk-aria-moltbot-aria-research && rm -rf "$T"
manifest: aria_skills/research/SKILL.md
source content

aria-research

Research and information gathering. Create projects, add sources, take notes, generate questions, assess source quality, synthesize findings, and generate bibliographies.

Usage

exec python3 /app/skills/run_skill.py research <function> '<json_args>'

Functions

create_project

Create a new research project.

exec python3 /app/skills/run_skill.py research create_project '{"topic": "AI safety"}'

add_source

Add a source to a research project.

exec python3 /app/skills/run_skill.py research add_source '{"project_id": "abc", "url": "https://example.com"}'

add_note

Add a research note.

exec python3 /app/skills/run_skill.py research add_note '{"project_id": "abc", "content": "Key finding..."}'

generate_questions

Generate research questions (surface, medium, deep).

exec python3 /app/skills/run_skill.py research generate_questions '{"project_id": "abc"}'

assess_sources

Assess source quality and coverage.

exec python3 /app/skills/run_skill.py research assess_sources '{"project_id": "abc"}'

synthesize

Synthesize research into a summary.

exec python3 /app/skills/run_skill.py research synthesize '{"project_id": "abc"}'

get_bibliography

Generate bibliography (apa, mla, chicago).

exec python3 /app/skills/run_skill.py research get_bibliography '{"project_id": "abc", "format": "apa"}'