CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Cfgd

tj-smith47/cfgd
STDIOregistry active
Summary

This connects Claude to cfgd's declarative machine configuration system, letting you manage packages, dotfiles, system settings, and secrets through a GitOps workflow. You can query current machine state, generate configuration from existing systems, apply profiles with inheritance, and check for drift between declared and actual state. The reconciliation loop continuously enforces your desired configuration across package managers (brew, apt, snap, and a dozen others), dotfiles, and system settings. Reach for this when you want Claude to help scaffold machine configs, troubleshoot drift, or build shareable modules that work across platforms. It wraps cfgd's CLI operations including init, apply, diff, and daemon control into MCP actions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
cfgd gear icon

cfgd

Declare your entire machine — packages, dotfiles, system settings, secrets — with composable profiles and shareable, cross-platform modules.

CI E2E Release Coverage License: MIT OR Apache-2.0

Status: Alpha — APIs may change.


  • What is cfgd
  • How It Works
  • Quick Start
  • Why cfgd exists
  • Shareable Modules
  • How cfgd compares
  • Features
  • Documentation
  • Distribution

What is cfgd

Most dotfile managers track files. cfgd enables you to manage your entire machine. You declare packages, files, secrets, and system settings in version-controlled YAML. cfgd diffs what you want against what you have, builds a plan, and reconciles — continuously. If something drifts, it's detected and corrected.

How It Works

Profiles declare your machine's desired state — packages, files, system settings. They compose via inheritance — share a common base across machines, then specialize per context. See docs/profiles.md.

             base
            ╱    ╲
        work    personal
       ╱    ╲
  laptop    devcontainer

Modules are shareable, self-contained config packages. Install someone else's dev environment or publish your own. Cross-platform package resolution picks the right manager automatically. See docs/modules.md.

Reconciliation continuously ensures machines match their declared state. Drift is detected, reported, and optionally auto-corrected. Failed actions don't abort — they're logged and skipped. See docs/reconciliation.md.

Quick Start

# Install via Homebrew
brew install tj-smith47/tap/cfgd

# Or via install script
curl -fsSL https://github.com/tj-smith47/cfgd/releases/latest/download/install.sh | sh

# Or via cargo
cargo install cfgd

# Bring your config to a new machine in seconds
cfgd init --from git@github.com:you/machine-config.git

# Or start fresh
cfgd init

# Or let AI scan your system and generate config for you
export ANTHROPIC_API_KEY=sk-...
cfgd generate

# Set up shell completions (add to your shell's rc file)
source <(cfgd completion bash)  # .bashrc
source <(cfgd completion zsh)   # .zshrc
cfgd completion fish | source   # config.fish

Why cfgd exists

I recently switched jobs, and spent the last week of my old job backing up scripts and dotfiles, parsing out company specific info, and composing a tarball to transfer. At the new job, I spent another few days getting my new machine reconfigured. Over time, I gradually discovering things I'd forgotten, as well as some things (e.g., System Settings) that I thought would have been nice to have included in the backup. This all felt very manual and incomplete, and I thought there needed to be a better way; I should just be able to clone a repo and have my entire workstation — packages, scripts, dotfiles, system settings - feel familiar again. And even better, to keep aspects of that feeling in sync betweeen my home and work laptops (parts of it, at least).

Another inspiring aspect had to do with working in devcontainers. At my previous company I had set up custom scripts to inject dotfiles into the devcontainer so a user could replicate their dev environment inside the container once they shell in. At minimum, I wanted my full neovim editor setup available in any ephemeral container without having to modify the devcontainer config in every team's repository I worked in just to accommodate my setup. I needed something that could bootstrap my config into any environment from the outside, regardless of which / whose repo I was working in. Plus, I had some coworkers in need of education about the superiority of vim-motions, and wanted a quick and easy way to share my exact setup, down to the alias.

cfgd was architected by a platform / infrastructure engineer, and borrows from the best ideas across practices:

  • Kubernetes — declarative reconciliation loop, KRM resource model
  • Terraform — plan/apply workflow, state tracking, drift detection
  • Puppet — continuous enforcement via daemon, module ecosystem
  • Nix — reproducible machine state from a single source of truth
  • Ansible — YAML-driven config management, idempotent task execution
  • Kustomize — layered overrides and patches
  • chezmoi — dotfile management

Shareable Modules

This is my favorite feature; a single, packaged, works anywhere in no time at all config file for a tool.

cfgd module create my-dev-env
cfgd profile update --module community/nvim

A module declares packages with cross-platform resolution, config files, shell env's and aliases, and lifecycle scripts:

apiVersion: cfgd.io/v1alpha1
kind: Module
metadata:
  name: nvim
  description: Neovim editor configuration
spec:
  depends: [node, python]
  packages:
    - name: neovim
      minVersion: "0.10"
      prefer: [brew, snap]
      deny: [apt]
    - name: ripgrep
    - name: fd
      aliases:
        apt: fd-find
        dnf: fd-find
    - name: gcc
      aliases:
        apt: build-essential
        dnf: "@development-tools"
      platforms: [linux]
  files:
    - source: files/init.lua
      target: ~/.config/nvim/init.lua
    - source: files/lua
      target: ~/.config/nvim/lua
  env:
    - name: EDITOR
      value: nvim
  aliases:
    - name: v
      command: nvim
  scripts:
    postApply:
      - nvim --headless '+Lazy! sync' '+MasonToolsInstallSync' +qa

See docs/modules.md for the full spec including git file sources, registries, and dependency resolution.

How cfgd compares

cfgdchezmoiNix Home ManagerAnsiblePuppet
FocusFull machine stateDotfilesDotfiles + packages (Nix)General automationServer/infra state
Packages15 managersNoneNix onlyAny (via tasks)Any (via providers)
Drift detectionContinuous (daemon)ManualOn rebuildManualContinuous (agent)
Cross-platform resolutionPer-package manager mappingN/ANix-onlyPer-task conditionalsPer-OS Hiera data
Shareable modulesFirst-classTemplates onlyFlakesRoles (Galaxy)Forge (server-oriented)
Team configPolicy tiers + CrossplaneN/AFlake inputsN/APuppet Enterprise
InfrastructureSingle binary, zero serversSingle binaryNix daemonSSH (or AWX)PuppetServer + PuppetDB + CA
Learning curveYAML + CLIGo templatesNix languageYAML + Jinja2Puppet DSL (Ruby)

Puppet is the closest philosophical match — declarative state, continuous enforcement, module ecosystem. If that model clicked for you but standing up a JVM server and writing a Ruby-era DSL to manage your dotfiles in 2026 doesn't, cfgd is what that idea looks like rebuilt from scratch for developer workstations.

cfgd is a good fit when you want: one-liners for cross-platform machine bootstrapping, shareable dev environment modules, continuous reconciliation between machines or subscribed sources, or team config distribution with policy enforcement.

Features

For developers:

  • One-command bootstrap — cfgd init --from <repo> --apply on a new machine, done
  • AI-guided generation — cfgd generate scans your system and builds profiles/modules; MCP server for AI editor integration
  • Authoring skills — cfgd skill install teaches your coding agent (Claude Code, Gemini, Copilot, Codex, Cursor) to author high-quality cfgd resources
  • Shareable modules — cross-platform dev environment packages with dependency resolution and registries
  • 15 package managers — brew, apt, dnf, pacman, cargo, npm, pipx, snap, and more, with automatic platform-aware resolution
  • Secrets — SOPS/age encryption + 1Password, Bitwarden, HashiCorp Vault; secret-backed environment variables
  • Tera templates — render dotfiles with variables, OS detection, custom functions
  • Continuous drift detection — daemon watches for changes, auto-syncs, notifies or auto-corrects

For platform & infrastructure engineers:

  • Multi-source config — publish team baselines with policy tiers (locked/required/recommended/optional)
  • Kubernetes operator — CRDs for MachineConfig, ConfigPolicy, DriftAlert; admission webhook; device gateway with fleet dashboard
  • Node configuration — sysctl, kernel modules, containerd, kubelet, AppArmor, seccomp, certificates
  • CSI driver — OCI-based module injection into pods via volumes
  • Crossplane integration — TeamConfig XR for self-service team environment distribution
  • kubectl plugin — kubectl cfgd debug/exec/inject/status for node inspection

For security & compliance:

  • Compliance snapshots — continuous machine state capture with JSON/YAML export for Vanta, Drata, or custom integrations
  • Key provisioning — declarative SSH key generation, GPG key management, and git signing configuration
  • Encryption enforcement — per-file encryption requirements with SOPS/age backend validation
  • Policy enforcement — locked files, required packages, encryption constraints on target paths
  • Drift remediation — daemon detects and auto-corrects configuration drift with per-module policies
  • Fleet visibility — device gateway aggregates compliance scores across enrolled machines

Documentation

DocumentDescription
ConfigurationRoot config (cfgd.yaml), file strategies, aliases, themes
ProfilesProfile YAML, inheritance, merge rules, variables
ModulesModule spec, cross-platform packages, dependencies, git file sources, registries
ReconciliationPhase ordering, failure handling, state store
PackagesAll package managers, skip behavior, dry-run
TemplatesTera template system, context variables, custom functions
SecretsSOPS/age backends, 1Password, Bitwarden, Vault
System ConfiguratorsShell, macOS defaults, systemd, sysctl, kubelet, and more
SourcesMulti-source config, policy tiers, composition, subscriptions
DaemonFile watching, reconciliation loop, sync, notifications, service install
OperatorCRD-based machine management, device gateway, DaemonSet node agent
Team ConfigCrossplane-powered team config distribution
SafetyAtomic writes, backups, rollback, apply locking, path safety
CLI ReferenceComplete command reference with flags and examples
InstallationAll install channels (Homebrew, install script, winget, scoop, chocolatey, cargo, direct download)
Bootstrapcfgd init flow, apply options, install script
AI GenerateAI-guided config generation, MCP server setup
Authoring Skillscfgd skill installer, provider target matrix, the quality bar, generate-vs-skill

Distribution

In addition to publishing binaries to GitHub Releases (Linux, macOS, Windows — amd64 + arm64), each release also publishes to:

ChannelArtifact
Homebrewbrew install tj-smith47/tap/cfgd
crates.iocargo install cfgd
AURyay -S cfgd (Arch Linux; builds from source)
GHCRDocker images: cfgd, cfgd-operator, cfgd-csi
Helmhelm install cfgd oci://ghcr.io/tj-smith47/charts/cfgd
Krewkubectl krew install cfgd — the kubectl plugin for debugging nodes, exec'ing into agent pods, and inspecting fleet status
OLMOperator bundle for OLM-managed clusters
Crossplanefunction-cfgd composition function for team config distribution

CI/CD integrations:

IntegrationDescription
cfgd SetupGitHub Action — bootstrap a runner with a module from your config repo
cfgd PlanGitHub Action — run cfgd plan on PRs, post the diff as a comment
GitLab CIIncludable .cfgd-ci.yml template with .cfgd-plan and .cfgd-apply jobs
Tektoncfgd-apply Task for Tekton Pipelines
# Example: set up your dev tools on a GitHub Actions runner
- uses: tj-smith47/cfgd/ecosystem/github-action-setup@master
  with:
    source: git@github.com:you/machine-config.git
    module: dev-tools

Modules can also be exported as DevContainer Features for injection into devcontainers:

cfgd module export my-tool --format devcontainer

Building from source:

git clone https://github.com/tj-smith47/cfgd.git && cd cfgd
cargo build --release

License

Licensed under either of

  • Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
  • MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
Packageghcr.io/tj-smith47/cfgd:0.4.0
TransportSTDIO
UpdatedMay 30, 2026
View on GitHub