Home / black-yt / skills · structai/SKILL.md · GitHub

structai skillA

structai is agent-read markdown (skill) from black-yt/skills: Use when building, testing, or debugging LLM applications with the StructAI Python toolkit, including LLMAgent calls, structured outputs, LLM judging, batch concurrency, file/PDF utilities, text parsing, private-IP no_proxy handling, and timeout wrappers..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# StructAI

## 使用边界

- 用于基于 `structai` 快速搭建 LLM workflow、批量推理、结构化输出、评测、PDF 解析和常用 I/O。
- 不要把 API key、token、私有 base URL 写进代码或日志;优先读取环境变量。
- 不要擅自安装、升级或修改共享 Python/conda 环境;需要安装 `structai` 或依赖时,先征得用户同意。
- 如果本地 `structai` 版本和示例不一致,先用 `python -c "from structai import structai_skill; print(structai_skill())"` 查看当前版本文档。

## 环境变量

```bash
export LLM_API_KEY="[API_KEY]"
export LLM_BASE_URL="[OPENAI_COMPATIBLE_BASE_URL]"
export MINERU_TOKEN="[MINERU_TOKEN]"  # 仅 PDF 解析需要
```

- PyPI 安装:`pip install structai`
- GitHub 源码:https://github.com/black-yt/structai

## 上游版本锚点

- 当前 skill 对照 structai `pyproject.toml` package version:`0.1.24`。
- 当前 skill 对照 GitHub HEAD:`d20df602578bee124a9c93b293493e63212d0aab`。
- 维护本 skill 前,先重新检查上游 `pyproject.toml` 版本和 HEAD;如果任一变化,必须阅读 README、`pyproject.toml`、`structai_skill()` 输出和相关源码后再更新。

安装模板:

```bash
pip install structai
```

开发版本模板:

```bash
git clone https://github.com/black-yt/structai.git
cd structai
pip install -e .
```

## 源码追溯

- 如果示例和当前行为不一致,优先追溯已安装包源码,而不是猜测 API。
- `inspect.getsource(...)` 适合快速查看函数、类、方法的真实实现。
- `module.__file__` 可定位包安装路径,再按需打开源码文件。
- 源码只用于阅读和定位问题,不要改源码,不要修改 `site-packages` 或共享环境;需要改库时,先 clone 仓库并使用 editable install,且必须征得用户同意。

```python
…

Read the whole file at its exact version.

How to install

Latest version
mdr add black-yt/skills/structai@git:20260713.9b7b32b
Exact content
mdr add black-yt/skills/structai@sha256:3e63e8bc28a17782

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_z23d422m7nh557oj.svg)](https://markdownregistry.com/a/art_z23d422m7nh557oj)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260713.9b7b32b latest2026-07-13 9b7b32b 11,219 BA view · diff
git:20260605.e7634082026-06-05 e763408 10,641 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (11219 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

black-yt/skills · 13 stars · license none · pushed 2026-09-22 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_z23d422m7nh557oj
GET https://markdownregistry.com/api/v1/resolve?ref=black-yt/skills/structai
GET https://markdownregistry.com/api/v1/blob/3e63e8bc28a17782c1a6de2082d1ce577e71a4d4dac29958e706e6634dce9fb7

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from black-yt/skills

AGENTS.md agents
black-yt/skills · AGENTS.md
git:20260804.1ce2bfe · audit B · 13 stars
agents-md-maintenance skill
black-yt/skills · agents-md-maintenance/SKILL.md · 当需要创建、整理、拆分或维护仓库中的 AGENTS.md、CLAUDE.md 或同类默认加载 agent 操作指南时使用;覆盖常驻上下文边界、*.local/ 按需拆分、公开/私有跟踪策略、同步校验和安全编辑。
git:20260803.6c56440 · audit A · 13 stars
ai-conference-paper-writing skill
black-yt/skills · ai-conference-paper-writing/SKILL.md · 当需要撰写、重构或打磨 AI conference paper 时使用;覆盖 research story、章节结构、图表实验布局、引用、case study、术语体系和可复现评测,重点把工作包装成清晰的问题、能力缺口和论证闭环。
git:20260611.295e62a · audit A · 13 stars
browser-render-visualization skill
black-yt/skills · browser-render-visualization/SKILL.md · 当需要用 Playwright 渲染网页前端、GitHub Pages、本地静态页面、Canvas 或 Three.js 页面并保存桌面/移动端截图、检查空白渲染、布局溢出和浏览器报错时使用。
git:20260605.e763408 · audit B · 13 stars
codex-history-sync skill
black-yt/skills · codex-history-sync/SKILL.md · 当需要把一个 CODEX_HOME/.codex 中的 Codex 会话记录、history.jsonl、sessions 和 thread title 元数据单向同步到另一个用户或目录下的 .codex 时使用;强调…
git:20260701.f15c195 · audit A · 13 stars
context-overlay skill
black-yt/skills · context-overlay/SKILL.md · Use when configuring or debugging the context-overlay OpenAI-compatible proxy for deterministic prompt/context…
git:20260713.9b7b32b · audit B · 13 stars
docx-splitting skill
black-yt/skills · docx-splitting/SKILL.md · 当需要在 Windows + Microsoft Word 环境中按页拆分 .docx 文件并尽量保留原始格式、图片、表格和分页效果时使用。
git:20260509.cdf62b1 · audit A · 13 stars
feishu-bot skill
black-yt/skills · feishu-bot/SKILL.md · 当需要创建、配置、调用或排查飞书/Lark 机器人时使用;覆盖自定义机器人 webhook 单向群通知、签名校验、消息格式、错误码,以及应用机器人收发消息、tenant_access_token、权限、事件订阅、卡片交互和资源上传。
git:20260613.d8ec3ec · audit A · 13 stars
frontend-markdown-rendering skill
black-yt/skills · frontend-markdown-rendering/SKILL.md · 当需要在前端把最终 assistant 文本渲染为 Markdown,同时保留工具过程为纯文本/JSON,并支持表格、代码块、图片、KaTeX 公式、Mermaid 图和 workspace 本地图片安全访问时使用。
git:20260605.e763408 · audit B · 13 stars
github-readme-writing skill
black-yt/skills · github-readme-writing/SKILL.md · 当需要为 GitHub 项目创建、重构或审阅高质量 README.md 时使用;参考 ResearchClawBench 风格,覆盖居中标题、徽章、导航、teaser、highlights、news、Mermaid、GitHub…
git:20260611.295e62a · audit A · 13 stars
huggingface-dataset-publishing skill
black-yt/skills · huggingface-dataset-publishing/SKILL.md · 当需要创建、上传、验证和维护 Hugging Face Dataset 时使用,尤其是包含图片、多图字段、文本步骤、答案、JSON/metadata 字段的数据集;包括 datasets Features/Image/Sequence…
git:20260605.e763408 · audit A · 13 stars
lab-cluster-1-web-portal skill
black-yt/skills · lab-cluster-1-web-portal/SKILL.md · 当需要访问、登录、自动化查询或排查 lab-cluster-1 的 h.pjlab.org.cn 集群管理网站时使用;覆盖浏览器/OIDC 登录、h.pjlab.org.cn/kapi/auth endpoint、凭据和 token…
git:20260613.2b94c80 · audit A · 13 stars

Every file in black-yt/skills

Browse by kind, by grade A, or by owner.