Galdr

Advanced

Full vault + multi-project orchestration

Everything in Slim plus: Obsidian-compatible knowledge vault, PCAC multi-repo topology, 7 skill packs, platform doc crawling, and YouTube transcript ingestion.

Everything in Galdr Slim, plus vault, PCAC multi-project orchestration, and 7 optional skill packs.
Fullv1.2.1

Quick Start

git clone https://github.com/wrm3/galdr.git && cp -r galdr/template_full/.* your-project/
View on GitHub →

Features

What you get

All Slim features

Full Slim feature set included: 9 agents, 49 skills, 78 commands, 5-IDE parity.

Obsidian-compatible vault

YAML frontmatter notes, MOC hub pages, _INDEX.md auto-generation for directories with 10+ notes.

Platform doc crawling

Weekly-refreshed docs for Cursor, Claude, Gemini. Stale entries surfaced at session start.

YouTube transcript ingestion

yt-dlp offline transcript → vault note with structured frontmatter. No API keys.

URL ingestion (one-time)

Crawl4ai URL → vault article note. Dedup by source URL.

PCAC multi-project topology

Declare parent/child/sibling relationships. 10 coordination skills: adopt, claim, order, ask, notify, move, send-to, spawn, read, sync.

Task broadcast cascade

Push tasks down from parent to children. Configurable depth 1–3.

INBOX.md coordination

Cross-project message routing: requests, broadcasts, syncs, conflicts.

Shared vault support

Multiple projects contribute to one knowledge base. vault_location configurable in .identity.

7 optional skill packs

Infrastructure, AI/ML, startup tools, AI video, 3D graphics, content creation, blockchain.

Commands

@g-* command reference

CommandDescription
@g-pcac-adoptRegister another project as a child
@g-pcac-claimRegister another project as the parent
@g-pcac-orderPush tasks to child projects with cascade depth
@g-pcac-askRequest parent action; marks local task blocked
@g-pcac-notifySend [INFO] notifications to project INBOXes
@g-pcac-moveTransfer files between projects with provenance
@g-pcac-send-toSend assets to related projects with INBOX notification
@g-pcac-spawnSpawn new galdr project with full scaffold + topology link
@g-pcac-readReview and action incoming cross-project INBOX items
@g-pcac-syncSibling contract sync — advisory, non-blocking
@g-ingest-docsIngest platform docs URL with revisit scheduling
@g-ingest-urlOne-time URL ingestion into vault articles
@g-ingest-youtubeYouTube transcript ingestion into vault videos
@g-harvestAnalyze external repos for adoptable patterns
@g-harvest-intakeConvert harvest report to galdr artifacts
@g-reverse-specDeep repo analysis → structured FEATURES.md harvest

Skills

Skill catalog

Vault

g-skl-vault

File-first vault + Obsidian notes, MOC hubs, path resolution, linting

g-skl-ingest-docs

Platform doc crawling with staleness tracking and refresh schedule

g-skl-ingest-url

One-time URL → vault article. Dedup by source URL

g-skl-ingest-youtube

yt-dlp transcript → vault video note

g-skl-knowledge-refresh

Audit vault freshness — stale notes, broken links, missing pages

PCAC

g-skl-pcac-adopt

Register child project in topology

g-skl-pcac-claim

Register parent project in topology

g-skl-pcac-order

Push tasks to children with cascade depth 1–3

g-skl-pcac-ask

Child requests parent action

g-skl-pcac-notify

FYI-only cross-project notifications

g-skl-pcac-move

Transfer files between projects with provenance

g-skl-pcac-send-to

Send assets to related projects

g-skl-pcac-spawn

Spawn new galdr project with topology link

g-skl-pcac-read

Review and action INBOX items

g-skl-pcac-sync

Sibling contract sync

Harvest

g-skl-harvest

Analyze external GitHub repos — zero writes without approval

g-skl-harvest-intake

Convert harvest report to galdr features/tasks

g-skl-reverse-spec

Deep repo analysis → structured FEATURES.md harvest

Optional Skill Packs

Infrastructure

cp -r galdr/skill-packs/infrastructure/.* your-project/
k8s-deployterraform-planci-pipelinedocker-compose

AI/ML Dev

cp -r galdr/skill-packs/ai-ml/.* your-project/
hf-traininggpu-job-runnermodel-evaldataset-builder

Startup Tools

cp -r galdr/skill-packs/startup/.* your-project/
pitch-deckvc-researchproduct-specformation-guide

AI Video

cp -r galdr/skill-packs/ai-video/.* your-project/
higgsfieldseedancevideo-analyzerframe-extract

Agents

Specialized agents

g-agnt-project

g-agnt-project.md

Manages PROJECT.md, goals, and project identity

g-agnt-task-manager

g-agnt-task-manager.md

Owns TASKS.md and individual task files

g-agnt-code-reviewer

g-agnt-code-reviewer.md

Adversarial code review — separate from implementing agent

g-agnt-qa-engineer

g-agnt-qa-engineer.md

Bug filing, QA workflow, quality metrics

g-agnt-verifier

g-agnt-verifier.md

Independent verification of [🔍] items

g-agnt-infrastructure

g-agnt-infrastructure.md

DevOps, CI/CD, Docker, cloud infra

g-agnt-ideas-goals

g-agnt-ideas-goals.md

IDEA_BOARD → task promotion + goal tracking

g-agnt-test

g-agnt-test.md

L1/L2/L3 test plan creation and execution

g-agnt-pcac-coordinator

g-agnt-pcac-coordinator.md

Orchestrates cross-project PCAC operations

Workflows

How it works

Typical workflow

  1. 1

    Adopt / Spawn

    @g-pcac-adopt or @g-pcac-spawn → register project relationship

  2. 2

    Order

    @g-pcac-order → push tasks down to children with depth config

  3. 3

    Execute

    Children implement independently, mark [🔍]

  4. 4

    Report

    @g-pcac-ask → child requests parent review or unblocking

  5. 5

    Sync

    @g-pcac-read → parent reviews INBOX, resolves conflicts

PCAC Multi-Project Topology

flowchart TD
  P([galdr_master_control\nparent]) -->|cascade tasks| C1([galdr_web\nchild])
  P -->|cascade tasks| C2([galdr_api\nchild])
  C1 <-->|sibling sync| C2
  C1 -->|ask parent| P
  P -->|INBOX| C1
  P -->|INBOX| C2
  style P fill:#1e293b,stroke:#c9922a,color:#c9922a
  style C1 fill:#1e293b,stroke:#60a5fa,color:#60a5fa
  style C2 fill:#1e293b,stroke:#60a5fa,color:#60a5fa

Mermaid diagram — paste into any Mermaid renderer to visualize