Using Agent Skills
Qiongli installs one agent-facing skill system, but each client exposes it differently. Use this page after installation when you need to know what to type inside Codex, Claude Code, Gemini CLI, or the shell.
Naming Model
| Name | Meaning | Where it appears |
|---|---|---|
qiongli | Public plugin, CLI, and user-visible skill name | Skillsplace, npm, PyPI, Codex /skills, shell commands |
qiongli-workflow | Portable skill package directory | ~/.codex/skills/, ~/.claude/skills/, ~/.gemini/skills/, plugin payloads |
skills/*/*.md | Internal academic capability cards | Repository source and orchestrator injection |
Most users should look for qiongli, not research-paper-workflow. The directory name qiongli-workflow remains for compatibility with existing installers and release artifacts.
Client Entry Points
| Client | Discover | Invoke | Notes |
|---|---|---|---|
| Codex | /skills | $qiongli | Codex does not expose a custom /qiongli slash command. Restart Codex after installing or upgrading. |
| Claude Code | Plugin UI or /plugin commands | /paper, /lit-review, /paper-write, /code-build, or natural language asking for Qiongli | Plugin installs command wrappers plus the portable skill package. |
| Gemini CLI | Extension install or global workflow discovery | /paper, /lit-review, /paper-write, /code-build | Global installs create workflow discovery entries under the Gemini home directory. |
| Shell | qiongli check | qiongli doctor, qiongli upgrade, qiongli task-run, python3 -m bridges.orchestrator ... | Requires the npm or Python CLI surface. Advanced commands require Python 3.12+. |
Codex Usage
After installing from Skillsplace, npm, PyPI, or qiongli upgrade --target codex, restart Codex and check:
/skillsYou should see qiongli. Invoke it with $qiongli and a concrete research task:
$qiongli plan a systematic review on retrieval augmented generation in education
$qiongli design an empirical study about ai writing support in universities
$qiongli prepare a submission checklist for my CHI paperDo not expect /qiongli to work in Codex. Slash commands are reserved for Codex built-ins and installed slash surfaces that Codex itself exposes. Qiongli's Codex-facing entry is the skill invocation form.
If /skills only shows research-paper-workflow, you are seeing an older global install. Run the current installer or upgrade path, restart Codex, and check again:
qiongli upgrade --target codex --overwriteCurrent qiongli installers remove confirmed legacy research-paper-workflow global skill directories during upgrade. Use qiongli clean --globals --dry-run first if you want to preview global cleanup separately.
Claude Code And Gemini Usage
Claude Code and Gemini can expose Qiongli through workflow entry markdowns. The common user-facing commands are:
| Command | Use when |
|---|---|
/paper | You want the guided paper workflow and paper-type routing. |
/lit-review | You need literature search, screening, extraction, or synthesis. |
/paper-read | You want deep analysis of one paper. |
/find-gap | You need to identify and rank research gaps. |
/study-design | You need empirical, qualitative, or mixed-method study design. |
/paper-write | You want manuscript drafting from an existing research workspace. |
/code-build | You need strict academic code specification, planning, execution, review, and reproducibility checks. |
/submission-prep | You need journal or conference submission packaging. |
These slash workflows are convenience entrypoints. They all route into the same Qiongli task contract and skill package.
Shell And Orchestrator Usage
Use the shell CLI when you need to inspect, upgrade, validate, or run explicit task IDs:
qiongli check
qiongli upgrade --target all
qiongli doctor --project-dir .Use the orchestrator when you want explicit task planning or multi-agent execution:
python3 -m bridges.orchestrator task-plan \
--task-id F3 \
--paper-type empirical \
--topic ai-in-education \
--cwd .
python3 -m bridges.orchestrator task-run \
--task-id F3 \
--paper-type empirical \
--topic ai-in-education \
--cwd . \
--triadRecommended Flow
- Install through Skillsplace for one-client usage, or use
qiongli upgrade --target allfor global multi-client usage. - Restart the target client so its skill registry and workflow discovery refresh.
- In Codex, confirm
/skillsshowsqiongliand invoke$qiongli. - In Claude Code or Gemini, use
/paper,/lit-review,/paper-write, or/code-build. - For repeatable task execution, use
qiongli doctorandpython3 -m bridges.orchestrator task-plan|task-run.
Qiongli writes research artifacts under RESEARCH/[topic]/ when a workflow or orchestrator task produces durable outputs. Project-local integration files are only written when you explicitly run qiongli init or choose project install parts.