Skip to main content

Installer/upgrader CLI for qiongli (Codex / Claude Code / Gemini) without requiring a git fork.

Project description

qiongli

qiongli is the lightweight updater CLI for Qiongli (穷理), a contract-driven academic workflow system for Codex, Claude Code, and Gemini.

The full system name is Qiongli Zhengche (穷理证澈): Qiongli names the public research workflow, while Zhengche names the evidence-governance method that keeps claims, citations, assumptions, and output paths auditable.

What it does

  • Install or refresh global qiongli-workflow skill assets
  • Select the active subject package with --subject core|economics|accounting|business|finance|political-economy|geoeconomics|economics-accounting
  • Choose package coverage with --coverage complete|focused (complete is the default)
  • Upgrade assets to newer upstream versions
  • Support codex, claude, gemini, or all targets
  • Run doctor checks before/after installation

Installation

For a global CLI command, pipx is recommended:

pipx install qiongli

Upgrade an existing PyPI install with:

pipx upgrade qiongli

You can also install with pip:

pip install qiongli

If you use pip inside an active virtual environment, the CLI is installed into that environment. That only affects where the Python command lives; it does not make the workflow assets project-local.

Global-first update model

Current releases separate the package install from workflow asset installation:

  • pipx install qiongli / pipx upgrade qiongli updates the lightweight Python CLI.
  • qiongli install --target all installs the default core/complete package.
  • qiongli install --subject economics --target all installs the full framework plus economics specialization.
  • qiongli install --subject accounting --target all installs the full framework plus accounting specialization.
  • qiongli install --subject business --target all installs the full framework plus business/management specialization.
  • qiongli install --subject finance --target all installs the full framework plus finance specialization.
  • qiongli install --subject political-economy --target all installs the full framework plus political economy specialization.
  • qiongli install --subject geoeconomics --target all installs the full framework plus geoeconomics specialization.
  • qiongli install --subject economics --coverage focused --target all installs the slimmer economics-focused package.
  • qiongli install --subject economics-accounting --target all installs the official economics/accounting composite.
  • qiongli upgrade --subject accounting --target all refreshes the active global qiongli-workflow skill assets for Codex, Claude Code, Gemini, and Antigravity.
  • --project-dir is not required for normal global upgrades. It only selects a project when you run doctor, load project-level qiongli.toml / .qiongli.toml, or explicitly write project files with qiongli init / --parts project.

Global assets are written under client home directories such as:

~/.codex/skills/qiongli-workflow
~/.claude/skills/qiongli-workflow
~/.gemini/skills/qiongli-workflow

CLI

Main command and aliases:

  • qiongli
  • ql
  • research-skills (legacy)
  • rsk
  • rsw

Check updates

qiongli check

Upgrade assets

qiongli install --target all
qiongli install --subject economics --target all
qiongli install --subject accounting --target all
qiongli install --subject business --target all
qiongli install --subject finance --target all
qiongli install --subject political-economy --target all
qiongli install --subject geoeconomics --target all
qiongli install --subject economics --coverage focused --target all
qiongli install --subject economics-accounting --target all
qiongli upgrade --subject accounting --target all

Run doctor only when you want to check a specific project runtime:

qiongli upgrade --subject economics --target all --doctor --project-dir /path/to/project

The package includes a default upstream repo (jxpeng98/qiongli), so --repo is optional. Use --repo only when you want to override the default.

Override default repo (optional)

The CLI resolves upstream repo in this order:

  1. --repo argument
  2. QIONGLI_REPO environment variable
  3. legacy RESEARCH_SKILLS_REPO environment variable
  4. qiongli.toml or .qiongli.toml in your project path
  5. Packaged default (qiongli/project.toml)

Option A: Global override

Add this to your shell profile (~/.zshrc, ~/.bashrc, etc.):

export QIONGLI_REPO="<owner>/<repo>"

Then reload shell:

source ~/.zshrc

Now you can run:

qiongli check
qiongli upgrade --subject core --target all

Option B: Project-level override

Create qiongli.toml in your project root:

[upstream]
repo = "jxpeng98/qiongli"
url = "https://github.com/<owner>/<repo>"

This keeps the override local to that project.

Typical usage

# Install or update the CLI from PyPI
pipx install qiongli
pipx upgrade qiongli

# Refresh global workflow assets
qiongli install --target all
qiongli install --subject economics --target all
qiongli install --subject accounting --target all
qiongli install --subject business --target all
qiongli install --subject finance --target all
qiongli install --subject political-economy --target all
qiongli install --subject geoeconomics --target all
qiongli install --subject economics-accounting --target all

# Optional: initialize project-local files only when you want them
qiongli init --project-dir /path/to/project

--subject defaults to core and --coverage defaults to complete, so the default install is core/complete. With complete coverage, a specialized install keeps the full core framework and adds the requested subject overlays and subject-specific skills. --subject economics, --subject business, --subject finance, --subject political-economy, and --subject geoeconomics mean complete specialized installs, not reduced packages. --subject accounting means accounting/complete, full framework plus accounting specialization. Use --coverage focused only when you deliberately want the slimmer selected subject package used by Desktop/Web ZIPs. Current official subjects are core, economics, accounting, business, finance, political-economy, geoeconomics, and the named composite economics-accounting; composites are not arbitrary comma-separated stacking. Public Desktop ZIP subjects are core, economics, business, finance, political-economy, geoeconomics, and economics-accounting, with no standalone accounting Desktop ZIP in this phase. Subject packages are specialized installs, not reduced-quality cuts; switching subjects or coverage is another install/upgrade with the new flags. Older installs without a SUBJECT_MANIFEST.json or SUBJECT marker are treated as legacy core / complete.

Create local customization scaffolds from a source checkout when you need generated output with local overlays:

qiongli customize --subject economics --name my-econ-lab --out ./qiongli-custom/econ-lab

Local customization is supported through the source materializer:

python3 scripts/materialize_subject_package.py \
  --subject economics \
  --coverage complete \
  --source . \
  --custom-dir /path/to/custom-qiongli \
  --out /tmp/qiongli-workflow

The custom directory can add local overlays, profiles, registry entries, and custom skill markdown for that generated output only. It does not modify the canonical source tree. qiongli customize plus --custom-dir materialization is for the Python/source checkout workflow; npm runtime installs use pre-generated payloads in this phase.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qiongli-1.1.0b6.tar.gz (6.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qiongli-1.1.0b6-py3-none-any.whl (8.8 MB view details)

Uploaded Python 3

File details

Details for the file qiongli-1.1.0b6.tar.gz.

File metadata

  • Download URL: qiongli-1.1.0b6.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qiongli-1.1.0b6.tar.gz
Algorithm Hash digest
SHA256 b5d287f6322b9bde49a9d9f9269e4e3b3a1ed9ab20c8d24b82ed60868fcf8d83
MD5 53a976578a2b77df1fede8720fd9aa42
BLAKE2b-256 4f8bccf242baf4aa7fb25196bee5a3c06d9d445f92699d7d6d5be0ca03a30f71

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiongli-1.1.0b6.tar.gz:

Publisher: publish-pypi.yml on jxpeng98/qiongli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiongli-1.1.0b6-py3-none-any.whl.

File metadata

  • Download URL: qiongli-1.1.0b6-py3-none-any.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qiongli-1.1.0b6-py3-none-any.whl
Algorithm Hash digest
SHA256 b9b6a5700ef2856cb0b3d3219df8c14e769d0516a99f8d25c59e657936afa615
MD5 7820c1f82c5a80c9c239e903cbc91a0d
BLAKE2b-256 be233bfa26985be04699c93d43a52c720e3f2ba4041b62f369c2062ed009c901

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiongli-1.1.0b6-py3-none-any.whl:

Publisher: publish-pypi.yml on jxpeng98/qiongli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page