Skip to content

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

NameMeaningWhere it appears
qiongliPublic plugin, CLI, and user-visible skill nameSkillsplace, npm, PyPI, Codex /skills, shell commands
qiongli-workflowPortable skill package directory~/.codex/skills/, ~/.claude/skills/, ~/.gemini/skills/, plugin payloads
skills/*/*.mdInternal academic capability cardsRepository 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

ClientDiscoverInvokeNotes
Codex/skills$qiongliCodex does not expose a custom /qiongli slash command. Restart Codex after installing or upgrading.
Claude CodePlugin UI or /plugin commands/paper, /lit-review, /paper-write, /code-build, or natural language asking for QiongliPlugin installs command wrappers plus the portable skill package.
Gemini CLIExtension install or global workflow discovery/paper, /lit-review, /paper-write, /code-buildGlobal installs create workflow discovery entries under the Gemini home directory.
Shellqiongli checkqiongli 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:

text
/skills

You should see qiongli. Invoke it with $qiongli and a concrete research task:

text
$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 paper

Do 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:

bash
qiongli upgrade --target codex --overwrite

Current 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:

CommandUse when
/paperYou want the guided paper workflow and paper-type routing.
/lit-reviewYou need literature search, screening, extraction, or synthesis.
/paper-readYou want deep analysis of one paper.
/find-gapYou need to identify and rank research gaps.
/study-designYou need empirical, qualitative, or mixed-method study design.
/paper-writeYou want manuscript drafting from an existing research workspace.
/code-buildYou need strict academic code specification, planning, execution, review, and reproducibility checks.
/submission-prepYou 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:

bash
qiongli check
qiongli upgrade --target all
qiongli doctor --project-dir .

Use the orchestrator when you want explicit task planning or multi-agent execution:

bash
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 . \
  --triad
  1. Install through Skillsplace for one-client usage, or use qiongli upgrade --target all for global multi-client usage.
  2. Restart the target client so its skill registry and workflow discovery refresh.
  3. In Codex, confirm /skills shows qiongli and invoke $qiongli.
  4. In Claude Code or Gemini, use /paper, /lit-review, /paper-write, or /code-build.
  5. For repeatable task execution, use qiongli doctor and python3 -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.

Qiongli documentation