xtragpt-paper-revision-skill
v0.1.1
Published
OpenClaw skill pack for self-hosted XtraGPT paper revision
Maintainers
Readme
This package provides OpenClaw integration for XtraGPT.
Full documentation, examples, and paper: https://github.com/nuojohnchen/XtraGPT
xtragpt-paper-revision-skill
OpenClaw skill pack for using a self-hosted XtraGPT endpoint as a paper revision specialist.
What this package does
This package installs:
- a provider config for a local or remote OpenAI-compatible XtraGPT endpoint
- a paper-revision skill definition
- routing rules that auto-invoke the skill for academic editing requests
- a minimal example OpenClaw config
This package does not serve the model for you. You must already have a self-hosted OpenAI-compatible XtraGPT endpoint.
Prerequisites
Example self-hosted endpoint:
model:
provider: openai_compatible
base_url: http://127.0.0.1:8088/v1
model: Xtra-Computing/XtraGPT-7BSet environment variables before running OpenClaw:
export XTRAGPT_BASE_URL=http://127.0.0.1:8088/v1
export XTRAGPT_API_KEY=dummyInstall
npm install xtragpt-paper-revision-skill
npx xtragpt-paper-revision-skill initThis writes the following files into your current project:
openclaw/
├── openclaw.config.example.yaml
├── providers/
│ └── provider.xtragpt.yaml
├── routers/
│ └── router.auto_route_rules.yaml
└── skills/
└── skill.xtragpt-paper-revision-skill.yamlTo scaffold into a different directory:
npx xtragpt-paper-revision-skill init --dir /path/to/projectTo overwrite existing files:
npx xtragpt-paper-revision-skill init --forceSkill ID
Use this skill id in router rules or manual invocations:
xtragpt-paper-revision-skillIncluded provider mapping
OpenClaw model id:
xtragpt-7bServed provider model name:
Xtra-Computing/XtraGPT-7BSuggested usage flow
- Start your self-hosted XtraGPT server.
- Install and initialize this package.
- Include the generated provider, skill, and router YAML files in your OpenClaw project.
- Keep your GitHub repo as the main documentation hub for deployment details, examples, and paper framing.
