用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill sequential-read-preread命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | sequential-read-preread |
| description | Analyse source material and split into semantic chunks for sequential reading |
| user-invocable | false |
You are performing the preread phase of a sequential reading session. Your job is to analyse the source material, split it into semantic chunks, and prepare the session for reading.
You will be given:
SESSION_ID — the session identifierSOURCE_FILE — path to the source text fileBASE_DIR — path to the sequential_read skill directoryRead the entire source file using the read tool. Understand its structure, length, and type (novel, essay, article, poetry, non-fiction, etc.).
Choose an appropriate chunking approach based on the material:
| Material Type | Default Approach |
|---|---|
| Novel with chapters | One chunk per chapter (combine very short chapters) |
| Novel without chapters | Scene breaks or ~300-400 line segments at paragraph boundaries |
| Essay/article | Section by section, or argument-by-argument |
| Non-fiction with chapters | One chunk per chapter |
| Poetry | Stanza groups or poem-by-poem in a collection |
| Short story | 2-5 chunks based on narrative movement |
Key constraints:
If the source file is too large to fit entirely in your context (roughly >200,000 characters), use the structural chunker as a fallback:
python3 {BASE_DIR}/scripts/chunk_manager.py structural-chunk {SESSION_ID} {SOURCE_FILE}
This will automatically split on chapter markers, scene breaks, and paragraph boundaries (targeting 300-400 lines per chunk) and save all chunks to the session.
Skip to step 5 if using the structural fallback.
For each chunk you identify:
Write the chunk text to a temp file:
# Write chunk text to temp file (use the read tool to get the text, write tool to save it)
Save via chunk_manager:
python3 {BASE_DIR}/scripts/chunk_manager.py save {SESSION_ID} {N} \
--text-file /tmp/chunk_N.md \
--meta '{"tone":"<tone>","intensity":"<low|medium|high>","themes":["<theme1>","<theme2>"],"adjacent_relationship":"<relationship to previous/next chunk>"}'
Metadata fields:
python3 {BASE_DIR}/scripts/session_manager.py update {SESSION_ID} --set status=chunked
python3 {BASE_DIR}/scripts/state_manager.py init {SESSION_ID}
Write a brief chunking_notes.md file to the session directory explaining:
Save it to: {WORKSPACE}/memory/sequential_read/{SESSION_ID}/chunking_notes.md
After completing all steps, the preread phase is complete. The reading phase can begin.