Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

obsidian-plan-wikiObsidian 计划 wiki

Agent Skill

obsidian-plan-wiki 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

759

周安装

31

GitHub Stars

公开资料未说明

下载量

243
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:obsidian-plan-wiki(Obsidian 计划 wiki)
来源仓库:https://github.com/cygnusfear/agent-skills
仓库路径:skills/obsidian-plan-wiki
安装命令:
npx skills add https://github.com/cygnusfear/agent-skills --skill obsidian-plan-wiki
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cygnusfear/agent-skills --skill obsidian-plan-wiki

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • obsidian-plan-wiki 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Obsidian Spec Wiki

Obsidian-compatible markdown wikis. Feature areas capture what the system does (specs) and how to build it (plans). Load only what you need.

00.00 Johnny Lookup (CRITICAL)

If the human gives you only an ID like 20.01 (or 2001), treat it as a playbook call:

  1. Replace the dot with a hyphen: 20.0120-01
  2. Check docs/playbook/**/20-01-*/SKILL.md in the project — if it exists, read and follow it.
  3. If no local file exists, read playbook/**/20-01-*/SKILL.md from this skill's directory.
  4. Follow the instructions literally.

Quickstart

  1. Read docs/AGENTS.md (and docs/playbook/README.md if present).
  2. Identify structure: features/ or workstreams/ (treat workstreams as feature areas).
  3. Use Johnny Decimal with two-digit decimals (NN.NN).
  4. Apply open-questions format (🙋‍♂️/🤖/✅) with block IDs.
  5. Track changes via tk and tinychange.

Wiki Discovery

Check in order — first match wins:

  1. docs/ — primary
  2. docs/wiki/ — nested variant
  3. wiki/ — root alternative
  4. Plan tickets (tagged plan) — via tk list --tag plan

Always use docs/ for new wikis.

Directory Structure

docs/
├── README.md              # Index with feature table (Johnny Decimal)
├── AGENTS.md              # Symlink → AGENTS.md
├── AGENTS.md              # Agent instructions
├── changelog.md           # Keep a Changelog (generated by tinychange)
├── playbook/              # Process/tooling docs (Johnny Decimal, SKILL.md per entry)
│   ├── AGENTS.md          # Rules for this directory
│   ├── README.md          # Area index
│   ├── 05-common-tools/   # Foundational tools (git, tickets)
│   │   ├── 05-00-git/SKILL.md
│   │   └── 05-01-ticket/SKILL.md
│   ├── 10-docs/           # Documentation workflows
│   │   └── 10-01-open-questions-system/SKILL.md
│   ├── 15-planning/       # Planning workflows and tooling
│   ├── 20-git/            # Git merge pipeline and branch handlers
│   │   └── 20-01-methodic-rebase-merge/SKILL.md
│   ├── 30-refactor/       # Refactor guidance and checklists
│   ├── 50-testing/        # Testing workflows and verification
│   └── 80-agent-behaviour/# Agent autonomy and behaviour rules
│   # Plans: use tickets tagged `plan` (no plans/ directory)
│   # Postmortems: use tickets tagged `postmortem` (no postmortems/ directory)
├── reference/             # Architecture + research (Johnny Decimal)
│   ├── AGENTS.md          # Rules for this directory
│   ├── README.md          # Area index
│   └── decisions/         # ADRs (Johnny Decimal IDs)
├── features/              # Feature areas (Johnny Decimal)
│   └── NN-name/           # Area (10-19, 20-29, ...)
│       ├── README.md      # Area summary + spec/plan tables
│       ├── AGENTS.md      # Optional: area-specific rules
│       ├── NN.NN-spec.md  # Behavior spec (what)
│       └── NN.NN-plan.md  # Implementation plan (how)
│   # Research: use tickets tagged `research` (no research/ directory)

Plan locations (both valid):

  • Feature-scoped: docs/features/NN-area/NN.NN-*-plan.md
  • Cross-cutting: tickets tagged plan (created via todos_oneshot)

Playbook (Canonical Entries)

The skill provides canonical playbook entries — each is a SKILL.md (standard format understood by LLM agents). Projects can override any entry by creating a local file at the same Johnny Decimal ID in docs/playbook/.

Lookup: local file wins → skill fallback.

IDEntrySkill Path
05.00Git — commit format, rebase/merge, revertingplaybook/05-common-tools/05-00-git/SKILL.md
05.01Ticket — lifecycle, deps, agent coordinationplaybook/05-common-tools/05-01-ticket/SKILL.md
10.01Open questions systemplaybook/10-docs/10-01-open-questions-system/SKILL.md
10.02Question archiveplaybook/10-docs/10-02-question-archive/SKILL.md
10.03Obsidian documentation flowplaybook/10-docs/10-03-obsidian-flow/SKILL.md
15.02Spec divergence auditplaybook/15-planning/15-02-spec-divergence/SKILL.md
15.03Ticket divergence auditplaybook/15-planning/15-03-ticket-divergence/SKILL.md
15.04Review-to-ticketsplaybook/15-planning/15-04-review-to-tickets/SKILL.md
20.01Rebase preparations (investigate)playbook/20-git/20-01-methodic-rebase-merge/SKILL.md
20.02Rebase (execute)playbook/20-git/20-02-authoritative-main-rebase/SKILL.md
20.03Merge (execute)playbook/20-git/20-03-merge-local-safe/SKILL.md
20.04Post-merge hygieneplaybook/20-git/20-04-post-merge-hygiene/SKILL.md
20.05Debriefplaybook/20-git/20-05-debrief/SKILL.md
15.05Pre-mortemplaybook/15-planning/15-05-premortem/SKILL.md
30.00Refactor indexplaybook/30-refactor/30-00-refactor-index/SKILL.md
30.01Full refactor guideplaybook/30-refactor/30-01-full-refactor-guide/SKILL.md
30.02Convergence auditplaybook/30-refactor/30-02-convergence-audit/SKILL.md
30.03Test-driven refactoringplaybook/30-refactor/30-03-test-driven-refactoring/SKILL.md
30.04Closure monolith decomposition (TS)playbook/30-refactor/30-04-ts-closure-monolith-decomposition/SKILL.md
40.00Architecture indexplaybook/40-architecture/40-00-architecture-index/SKILL.md
40.01State ownershipplaybook/40-architecture/40-01-state-ownership/SKILL.md
40.02Module boundariesplaybook/40-architecture/40-02-module-boundaries/SKILL.md
40.03Dependency directionplaybook/40-architecture/40-03-dependency-direction/SKILL.md
40.04Domain logic separation (TS)playbook/40-architecture/40-04-ts-domain-logic-separation/SKILL.md
40.05Singleton patterns (TS)playbook/40-architecture/40-05-ts-singleton-patterns/SKILL.md
50.01Video-based NHITL testingplaybook/50-testing/50-01-video-based-nhitl-testing/SKILL.md
80.01Autonomous workplaybook/80-agent-behaviour/80-01-autonomous-work/SKILL.md
80.02Document featureplaybook/80-agent-behaviour/80-02-document-feature/SKILL.md
80.03Stale treesplaybook/80-agent-behaviour/80-03-stale-trees/SKILL.md
80.04Repo hygieneplaybook/80-agent-behaviour/80-04-repo-hygiene/SKILL.md
70.02Concern ownership auditplaybook/70-project-health/70-02-concern-ownership-audit/SKILL.md

Rebase Strategy

Read and follow the playbook in 20-git. Use critical sanity check if circumstances deviate. In case of doubt, ask the Hooman.

  1. 20.01 Rebase Preparations
  2. 20.02 Rebase

ALWAYS CONFIRM REBASE WITH EXPLICIT [R].

Merge Strategy

ONLY MERGE IF EXPLICITLY REQUESTED.

  1. 20.03 Merge
  2. 20.04 Post-Merge

ALWAYS CONFIRM MERGE WITH EXPLICIT [M].

Change Tracking (No LWW)

Specs, plans, and code are updated intentionally and together:

  1. Open or reference a tk ticket.
  2. Update the relevant spec/plan.
  3. Update the code.
  4. Add a changelog entry: tinychange -I new -k <kind> -m "t-XXXX: message" -a AUTHOR
  5. Link the ticket and feature ID in the entry.

Codebase AGENTS.md

Every top-level code folder needs an AGENTS.md: purpose, feature area IDs, boundaries, entry points, tests.

Best Practices

  1. Specs describe behavior (what). Plans describe implementation (how).
  2. All references are wiki links. Broken links = sync signal.
  3. Update changelog via tinychange immediately. Never hand-edit.
  4. One spec per feature/component.
  5. Research before deciding — use oracles.
  6. AGENTS.md is always a symlink to AGENTS.md.

Reference Files (Load on Demand)

Read these only when you need them. Do not preload.

WhenRead
Need Johnny Decimal rules, open questions format, tk workflow, tinychange commandsreferences/core-principles.md
Need spec template, plan template, bulletproof plan rules, AGENTS.md template, README templatereferences/templates.md
Creating a wiki, adding specs/plans, research workflow, updating specs, link formatreferences/workflows.md
Writing a postmortem, postmortem template, when to write onereferences/postmortems.md
Open questions system details and Dataview indexreferences/obsidian-open-questions-system.md
AGENTS.md / AGENTS.md template (compact version)references/claude-template.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.66%
按下载量换算82

Claude

31.11%
按下载量换算76

Cursor

18.69%
按下载量换算45

Gemini CLI

9.06%
按下载量换算22

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills