# Choral Skills: Reusable Agent Skill Library and Knowledge Workflow Suite

> Choral's open-source public agent skill collection, providing repository-based knowledge governance workflows, supporting multiple Agent runtimes and cross-platform compatibility.

- 板块: [Openclaw Llm](https://www.zingnex.cn/en/forum/board/openclaw-llm)
- 发布时间: 2026-05-30T04:15:38.000Z
- 最近活动: 2026-05-30T04:23:09.471Z
- 热度: 150.9
- 关键词: 代理技能, 知识工作流, Claude Code, Codex, 跨平台兼容, 技能生态, 知识治理, 开源工具
- 页面链接: https://www.zingnex.cn/en/forum/thread/choral-skills
- Canonical: https://www.zingnex.cn/forum/thread/choral-skills
- Markdown 来源: floors_fallback

---

## Choral Skills Guide: Reusable Agent Skill Library and Knowledge Workflow Suite

Choral Skills is an open-source public agent skill collection developed by choral-io. Its core is a repository-based knowledge governance workflow, supporting multiple Agent runtimes (such as Claude Code, Codex) and cross-platform compatibility. Its core concept is "Skills as Code", aiming to build an open agent skill ecosystem where agent capabilities can be version-controlled, shared, and combined.

## Project Background and Origin

### Project Basic Information
- Original author/maintainer: choral-io
- Source platform: GitHub
- Repository link: https://github.com/choral-io/choral-skills
- Release time: May 30, 2026

This project aims to solve the problem of agent skills being difficult to reuse and share. Through the form of an independent skill library, skills are not bound to specific products and can be installed into agent runtimes that support local skills.

## Core Skills and Knowledge Workflows

### Knowledge Management Skill Group
Covers the knowledge lifecycle (from creation to delivery) for different roles:
- **Maintainers**: knowledge-workflow-admin (setup/upgrade)
- **Team members**: knowledge-assistant (Q&A), knowledge-intake (idea processing), knowledge-capture (knowledge writing)
- **Read-only users**: knowledge-schema-audit (schema check), task-metadata-audit (task readiness check), knowledge-status-report (health summary)

### Delivery Management Skill Group
For delivery teams and individuals:
- **Delivery teams**: delivery-planning (solution planning), next-task-selection (task recommendation), kanban-maintenance (kanban management), delivery-implementation (task execution), delivery-review (work review)
- **Individuals**: workspace-worklist (local worklist management)

### Tool Skills
- **markdown-cli**: Convert documents like PDF/Office/HTML to Markdown format.

## Cross-Agent Compatibility Design

### SKILL.md Specification
Each skill includes a mandatory `SKILL.md` file, defining:
- Skill name (name)
- Description (description)
- Markdown instructions (usage notes)

### Platform-Specific Handling
- Core skill definitions are separated from platform enhancements: `agents/openai.yaml` is OpenAI/Codex UI metadata
- Claude Code, Gemini CLI and other runtimes can use skills via `SKILL.md` + `references/` resources
- Runtime-specific guidance is placed in documents/adapters; core skills do not depend on specific agent programs.

## Installation and Usage Guide

### Installation Methods
1. **Skills CLI (recommended)**: `npx skills add <owner>/<repo>` (unified experience, automatic dependency handling)
2. **Agent native manager**: Directly use the skill/plugin manager built into the runtime
3. **Manual copy**: Copy the `skills/<skill-name>/` directory to the runtime's skill directory

### Plugin Installation
- **Add market source**:
  - Claude Code: `claude plugin marketplace add choral-io/choral-skills`
  - Codex: `codex plugin marketplace add choral-io/choral-skills`
- **Install plugin**:
  - Claude Code: `claude plugin install <plugin-name>@choral-skills`
  - Codex: `codex plugin add <plugin-name>@choral-skills`

### Sparse Checkout
Reduce size: `claude plugin marketplace add choral-io/choral-skills --sparse .claude-plugin plugins/knowledge-workflow`

### Plugin Sync
Keep plugins in sync with root directory skills: `./scripts/sync-plugin-skills.sh knowledge-workflow` (supports check mode: `--check`).

## Security Tips and Ecosystem Value

### Security Tips
> Treat third-party skill managers and downloaded skills as code: check `SKILL.md`, scripts, and bundled resources before installation.
Recommendations: review source/author, read function descriptions, check files, install only from trusted sources.

### Ecosystem Significance
- **Standardized interface**: SKILL.md defines a unified specification for skills
- **Layered architecture**: Core skills (runtime-independent) + platform enhancements (optional)
- **Open ecosystem**: Multiple installation methods lower the threshold for use

### Application Scenarios
- Open-source project knowledge management
- Team collaboration norm establishment
- Agent capability expansion (as a starting point for skill development).

## Summary and Outlook

Choral Skills not only provides practical skills but also demonstrates best practices for building an agent skill ecosystem: standardized interfaces, cross-platform compatibility, layered architecture, and open installation mechanisms. As AI agents play an increasingly important role in software development, the value of its ecosystem will become more prominent. For developers, this project is an excellent reference case for building their own skill libraries.
