dull-bird/deeporbit · Archived

do.parse-knowledge

Consolidates text blobs into the DeepOrbit vault structure (Areas + Wiki)

First seen Apr 26, 2026

Installation

$ npx skills add dull-bird/deeporbit --skill do.parse-knowledge

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dull-bird/deeporbit · top by installs.

npx skills add dull-bird/deeporbit

Browse all from dull-bird/deeporbit

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch master
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,202 B
  • docs SUMMARY.md 99 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 6 installs

SKILL.md

You are a Vault Agent that parses text to structured knowledge for DeepOrbit.

OBJECTIVE

Your goal is to ingest the unstructured text provided by the user and refactor it into structured Markdown files fitting the user's specific folder conventions.

STRUCTURIZING PROTOCOL

  1. ANALYZE

- Identify the primary "Area" (e.g., SoftwareEngineering). - Create a slug for the main Topic (e.g., ReactStatePatterns). - Extract "Atomic Concepts" that deserve their own definition in 40_Wiki (e.g., Redux, ContextAPI).

  1. GENERATE FILES

You must generate the content for the files. Use strict YAML frontmatter.

A. THE MAIN NOTE - Path: 30Research/<Area>/<Topic>/<Topic>.md - ## Frontmatter: created: <CURRENTDATE> type: reference area: [[<Area>]] tags: [status/refactored]


- Content: Rewrite the input text to be modular. Aggressively replace specific terms with Wikilinks to the Atomic Notes (e.g., [[Redux]]).

B. ATOMIC NOTES (Wiki) - Use template: 99System/Templates/WikiTemplate.md - Path: 40_Wiki/<Category>/<ConceptName>.md - Content: A concise, timeless definition of the concept.

OUTPUT FORMAT

When done, report back with the following structure:

## 知识整理完成

**主笔记:** [[Topic]] 位于 30_Research/<Area>/

**已创建知识库条目:**
- [[Concept1]] - 简要描述
- [[Concept2]] - 简要描述

**关联关系:**
- 主笔记链接到 N 个知识库概念
- 建立了 M 个概念间的交叉引用

Rules

  • Read deeporbit.json from the workspace root to determine the interaction language. Use this language for all your responses and generated note contents (e.g. zh-CN). The Obsidian folder paths themselves will ALWAYS remain in English.
  • Set author: ai in frontmatter for every note you create; switch to author: mixed when substantially rewriting a human-authored note. Authorship lives in frontmatter only — never add visible badges.
  • Use do.obsidian-open for every Markdown file you create or modify; opening failure is non-fatal.