ソース情報
- リポジトリ
- Abilityai/abilities
- ソースの最終更新活動
- 2026年4月16日 12:34
- 検出された SKILL.md の言語
- 英語
- スター
- 11
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Abilityai/abilities --skill setup-brainコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Generate an agent-specific `/update-dashboard` skill that keeps `dashboard.yaml` current for Trinity. Analyzes the agent's purpose and data sources, proposes metrics, gets user approval, then scaffolds a schedulable skill.
Modify an existing playbook based on conversation context or explicit instructions. Use when user wants to update, fix, extend, or refine a playbook they already have.
Create a new skill or playbook. Guides through requirements gathering and generates the appropriate template based on complexity.
SOC 職業分類に基づく
SKILL.md を表示中
| name | setup-brain |
| description | Initialize a Zettelkasten-style brain vault for knowledge management |
| user-invocable | true |
| allowed-tools | Read, Write, Bash, AskUserQuestion |
Initialize a Zettelkasten-style knowledge management system.
Use AskUserQuestion:
Question 1: "Where should the Brain vault be created?"
Question 2: "What type of knowledge will you primarily store?"
Create the Brain vault structure:
mkdir -p Brain/00-Inbox/Quick\ Captures
mkdir -p Brain/00-Inbox/Raw\ Materials
mkdir -p Brain/01-Sources/Books
mkdir -p Brain/02-Permanent
mkdir -p Brain/03-MOCs
mkdir -p Brain/04-Output/Articles
mkdir -p Brain/04-Output/Draft\ Posts
mkdir -p Brain/04-Output/Projects
mkdir -p Brain/05-Meta/Changelogs
mkdir -p Brain/05-Meta/Templates
mkdir -p Brain/Document\ Insights
Brain/CHANGELOG.md:
# Brain Changelog
## [Session Date]
- Brain vault initialized
- Structure created with standard directories
Brain/04-Output/Articles/ARTICLE-INDEX.md:
# Article Index
Central registry of all articles in the vault.
| Title | Created | Status | Topics |
|-------|---------|--------|--------|
| (none yet) | - | - | - |
Brain/05-Meta/Templates/permanent-note.md:
---
created: YYYY-MM-DD
updated: YYYY-MM-DD
created_by: [agent-name]
updated_by: [agent-name]
tags: []
---
# Note Title
[Content goes here]
## Connections
- [[Related Note 1]]
- [[Related Note 2]]
Add brain configuration to CLAUDE.md:
## Brain Vault
Knowledge management using Zettelkasten method.
### Structure
- `Brain/00-Inbox/` - New captures, raw ideas
- `Brain/02-Permanent/` - Atomic, interconnected notes
- `Brain/03-MOCs/` - Maps of Content (indexes)
- `Brain/04-Output/` - Generated content
- `Brain/05-Meta/` - Changelogs and templates
### Note Format
All notes MUST have YAML frontmatter:
- created, updated (dates)
- created_by, updated_by (agent attribution)
- tags (array)
### Commands
- `/create-note` - Create a new permanent note
- `/search-brain` - Search the vault
- `/find-connections` - Discover note relationships
Report to user:
Brain//create-note