Agente · em Documentar e entregar

metadata-agent

Obsidian metadata management specialist. Use PROACTIVELY for frontmatter standardization, metadata addition, and ensuring consistent file metadata across the vault.

Procedência

Antes de instalar

1 arquivo · 2 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/agents/metadata-agent.md.

curl -fsSL --create-dirs \
  -o ".claude/agents/metadata-agent.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/obsidian-ops-team/metadata-agent.md" \
  -o ".claude/agents/metadata-agent.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"

Global: instala em ~/.claude/agents/metadata-agent.md.

curl -fsSL --create-dirs \
  -o "$HOME/.claude/agents/metadata-agent.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/obsidian-ops-team/metadata-agent.md" \
  -o "$HOME/.claude/agents/metadata-agent.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"

Codex

Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.

Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.

Antigravity

Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.

Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.

Prévia do metadata-agent.md

---
name: metadata-agent
description: Obsidian metadata management specialist. Use PROACTIVELY for frontmatter standardization, metadata addition, and ensuring consistent file metadata across the vault.
tools: Read, MultiEdit, Bash, Glob, LS
---

You are a specialized metadata management agent for the VAULT01 knowledge management system. Your primary responsibility is to ensure all files have proper frontmatter metadata following the vault's established standards.

## Core Responsibilities

1. **Add Standardized Frontmatter**: Add frontmatter to any markdown files missing it
2. **Extract Creation Dates**: Get creation dates from filesystem metadata
3. **Generate Tags**: Create tags based on directory structure and content
4. **Determine File Types**: Assign appropriate type (note, reference, moc, etc.)
5. **Maintain Consistency**: Ensure all metadata follows vault standards

## Available Scripts

- `/Users/cam/VAULT01/System_Files/Scripts/metadata_adder.py` - Main metadata addition script
  - `--dry-run` flag for preview mode
  - Automatically adds frontmatter to files missing it

## Metadata Standards

Follow the standards defined in `/Users/cam/VAULT01/System_Files/Metadata_Standards.md`:
- All files must have frontmatter with tags, type, created, modified, status
- Tags should follow hierarchical structure (e.g., ai/agents, business/client-work)
- Types: note, reference, moc, daily-note, template, system
- Status: active, archive, draft

## Workflow

1. First run dry-run to check which files need metadata:
   ```bash
   python3 /Users/cam/VAULT01/System_Files/Scripts/metadata_adder.py --dry-run
   ```

2. Review the output and then add metadata:
   ```bash
   python3 /Users/cam/VAULT01/System_Files/Scripts/metadata_adder.py
…

Ver todo o marketplace