一键导入
knowledge
Use when saving insights from the current conversation to persistent storage, or when retrieving past insights before starting research or writing tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when saving insights from the current conversation to persistent storage, or when retrieving past insights before starting research or writing tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user runs /acronyms, or asks to find, define, or mark up acronyms in a LaTeX thesis .tex file — e.g. converting literal acronyms like CMB, WIMP, dSph, NFW into glossaries macros and adding any missing definitions to acronyms.tex.
Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions.
Critical review of thesis sections or chapters. Evaluates scientific rigor, writing quality, logical flow, and citation completeness. Supports section-level (/referee X.Y) and chapter-level (/referee X) scope.
Research assistant that generates detailed, structural chapter outlines by synthesizing thesis context, local references, and NotebookLM insights.
Use when you need to resolve placeholder citations (e.g., surname_year) or missing bibliography entries in the LaTeX thesis by querying NotebookLM context and InspireHEP.
Run latexindent one-sentence-per-line on thesis chapter files. Use when the user asks to format, indent, or break lines in a chapter's LaTeX files.
| name | knowledge |
| description | Use when saving insights from the current conversation to persistent storage, or when retrieving past insights before starting research or writing tasks. |
Manages the .agent/knowledge/ folder as a persistent, searchable store of insights gathered across conversations. Two modes: save (write insights) and retrieve (find past insights).
.agent/knowledge/.md files with YAML frontmatterEvery knowledge file follows this structure:
---
title: "NFW Profile Definition"
date: 2026-03-04
source_skill: literature_research
chapter: chapter_01
tags: [dark-matter, density-profile, nfw, halo]
---
## Summary
[Concise description of the insight]
## Source References
- [Author (Year)] — arXiv: [number], bib key: `[key]`
## Context
[Which chapter/section this was gathered for, and why it matters]
Frontmatter fields:
| Field | Required | Description |
|---|---|---|
title | Yes | Descriptive title of the insight |
date | Yes | Date gathered (YYYY-MM-DD) |
source_skill | Yes | Which skill produced this (literature_research, paper_analysis, review_analysis, chapter_outline, or manual) |
chapter | No | Target chapter (e.g., chapter_01) |
tags | Yes | List of topic tags for retrieval |
Filename convention: Descriptive, topic-based, lowercase with underscores. Examples:
nfw_profile_definition.mdgce_interpretations_summary.mdpaper4_domain_adaptation_approach.mdTrigger: User says /knowledge save, "save this to knowledge", or at the end of a research skill workflow.
Identify insights: Review the current conversation for key findings worth persisting — definitions, methodology summaries, reference collections, structural decisions, or any reusable knowledge.
Check for duplicates: Scan .agent/knowledge/ filenames. If a file on the same topic exists, update it rather than creating a duplicate.
Write files: For each insight, create a .md file in .agent/knowledge/ following the format above.
Confirm: Report to the user what was saved and the filenames used.
references.md filesTrigger: User says /knowledge, "check knowledge for X", or automatically at the start of chapter_outline (Step 0).
List knowledge files: find_by_name(SearchDirectory=".agent/knowledge/", Pattern="*.md")
Match by relevance: Compare filenames and read frontmatter to find files matching the current topic. Use these signals:
Read matched files: Read the body of relevant files (typically 3–8 matches max).
Synthesize: Present a summary of what was found, organized by relevance. Highlight:
Files found: 12
├── Filename match: 3 files (contain topic keywords)
├── Tag match: 5 files (overlapping tags)
├── Chapter match: 2 files (same chapter)
└── No match: 2 files (skip)
→ Read top 8 matched files
→ Synthesize into context summary
This skill is called BY other skills:
| Calling Skill | Mode | When |
|---|---|---|
literature_research | Save | After producing references.md, save key insights |
paper_analysis | Save | After extracting methodology/results from author papers |
review_analysis | Save | After extracting content from review articles |
chapter_outline | Retrieve | Step 0, before starting research — check for existing knowledge |
Manual (/knowledge) | Either | User explicitly asks to save or retrieve |
bibliography.bib.[nfw, density-profile] not just [physics].