# hibrush-agent-skill **Repository Path**: lukeding/hibrush-agent-skill ## Basic Information - **Project Name**: hibrush-agent-skill - **Description**: hibrush-agent-skill - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-04 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hibrush-agent-skill Open-source agent skill for using Hibrush as a hosted image-generation backend from local agent runtimes such as Claude Code, OpenCode, OpenClaw, and Codex. ## What This Repo Contains - `SKILL.md`: the core skill contract for local agents - `scripts/bootstrap.sh`: local bootstrap for macOS/Linux shells - `scripts/bootstrap.ps1`: local bootstrap for PowerShell - `scripts/doctor.sh`: local environment and token readiness checks - `templates/env.example`: local config template - `references/runtime-notes.md`: runtime-specific notes and fallbacks ## Repository Mirrors - GitHub: `https://github.com/hellolukeding/hibrush-agent-skill.git` - Gitee: `https://gitee.com/lukeding/hibrush-agent-skill.git` Use GitHub first when available, then fall back to Gitee if needed. ## How It Works 1. Create a long-lived but revocable `HIBRUSH_SKILL_TOKEN` from the Hibrush Skill Hub. 2. Clone this repository locally. 3. Run the bootstrap script for your runtime. 4. Store the token only in local machine config. 5. Run the doctor script to verify readiness. ## Quick Start ```bash git clone https://github.com/hellolukeding/hibrush-agent-skill.git cd hibrush-agent-skill bash scripts/bootstrap.sh codex bash scripts/doctor.sh ``` If GitHub is unavailable: ```bash git clone https://gitee.com/lukeding/hibrush-agent-skill.git cd hibrush-agent-skill bash scripts/bootstrap.sh codex bash scripts/doctor.sh ``` ## Security Rules - Never commit `HIBRUSH_SKILL_TOKEN` into this repository. - Never write the token into tracked files. - Store the token only in local user or machine configuration. - Treat the token as scope-limited agent access, not as a full account credential. ## License Apache License 2.0. See `LICENSE`. ## Runtime Notes See `references/runtime-notes.md` for runtime-specific setup differences and fallback guidance.