📦 deps(thirdparty): update snapshots
This commit is contained in:
+16
-5
@@ -11,6 +11,7 @@
|
||||
### Distill methodologies from books, long-form videos, and podcasts into callable AI Skills
|
||||
|
||||
[](./LICENSE)
|
||||
[](./CHANGELOG.md)
|
||||
[](./SKILL.md)
|
||||
[](https://github.com/openclaw/openclaw)
|
||||
[](https://code.claude.com/)
|
||||
@@ -26,6 +27,16 @@
|
||||
|
||||
The website provides visual Skill Pack browsing, a beginner-friendly usage guide, Skill detail pages, and a contribution submission entry. This GitHub repository remains the sole source for cangjie-skill code, methodology, and templates; the website provides presentation, navigation, and usage guidance.
|
||||
|
||||
## What's New in v2.5.0
|
||||
|
||||
- **Capability Bundle as the single source of truth**: extraction produces stable capability cards and metadata before any installable output is compiled.
|
||||
- **Two deterministic delivery modes**: compile one router-style Skill (`single`) or a compact pack with a router plus promoted standalone Skills (`pack`).
|
||||
- **A unified local toolchain**: `scripts/cangjie.py` now covers diagnostics, compilation, output replanning, incremental updates, repair, rollback, evaluation, and benchmarking.
|
||||
- **Safer evolution**: content-addressed preprocessing, source diffs, impact analysis, transactional patches, edit detection, snapshots, and rollback are included.
|
||||
- **Registry v2 and website support**: output mode and capability counts are visible without breaking existing Registry v1 entries.
|
||||
|
||||
See the [v2.5.0 release notes](./docs/releases/v2.5.0.md) and [changelog](./CHANGELOG.md) for the complete scope and migration notes.
|
||||
|
||||
## DeepSeek Harness Plugin
|
||||
|
||||
cangjie-skill also provides a standalone installation package for DeepSeek Harness. The adapter layer is bundled in the Release package, so no platform-specific wrapper files are added to this repository.
|
||||
@@ -69,15 +80,15 @@ For video content, we recommend using the [video-downloader](https://github.com/
|
||||
|
||||
## How It Works
|
||||
|
||||
cangjie-skill uses the **RIA-TV++** pipeline to transform source texts—including books, video transcripts, podcast transcripts, and interview notes—into a set of structured skills. The process has seven stages:
|
||||
cangjie-skill uses the **RIA-TV++** pipeline to transform source texts—including books, video transcripts, podcast transcripts, and interview notes—into a reusable Capability Bundle, then compiles that source into installable skills. The process has seven stages:
|
||||
|
||||
1. **Whole-Content Comprehension (Adler Analysis)** — Structural, interpretive, critical, and applicability analysis using Mortimer Adler's method, producing `BOOK_OVERVIEW.md`
|
||||
2. **Parallel Extraction** — Five specialized extractors (frameworks, principles, cases, counter-examples, glossary) run simultaneously to pull candidate units from the source text
|
||||
3. **Triple Verification** — Each candidate must pass three checks: at least 2 independent supporting passages (cross-domain), ability to answer a novel question (predictive power), and non-commonsense uniqueness. Pass rate is typically 25-50%
|
||||
4. **RIA++ Construction** — Verified content is structured into six dimensions: R (original quote) / I (own-words reconstruction) / A1 (book cases) / A2 (future trigger scenarios) / E (executable steps) / B (boundaries & blind spots)
|
||||
5. **Zettelkasten Linking** — Dependency, contrast, and composition relationships between skills are identified, producing `INDEX.md` with a reference graph
|
||||
3. **Triple Verification + Promotion Gate** — Each candidate must pass the evidence checks, then earn an independent entrypoint only when its use cases justify the added routing cost
|
||||
4. **RIA++ Capability Construction** — Verified content is structured into R / I / A1 / A2 / E / B capability cards inside `.cangjie/capabilities/`
|
||||
5. **Zettelkasten Linking** — Dependencies, contrasts, and compositions are encoded in the Bundle's capability graph and shared glossary
|
||||
6. **Pressure Testing** — Test prompts including bait questions (and cross-skill confusion tests) are designed for each skill; failures go back for full reconstruction
|
||||
7. **Delivery** — A reader-facing `DIGEST.md` long-form digest is generated (skip the book, read the essence), and tested skills are installed into the Claude Code / Cursor skills directory so they can actually be invoked
|
||||
7. **Deterministic Compilation and Delivery** — The same Bundle compiles to `single` or compact `pack`, alongside a reader-facing `DIGEST.md`, validation results, and installable artifacts
|
||||
|
||||
The name RIA-TV++ breaks down as:
|
||||
- **RIA**: From Zhao Zhou's bookmark method (Reading / Interpretation / Appropriation)
|
||||
|
||||
Reference in New Issue
Block a user