updatekfg — community updatekfg, KFG-CCv2-Installer-Stable, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for AI Agents needing synchronized environment updates across devices, specifically those utilizing the KFG architecture KFG CCv2 Installer Stable - backup before CCv3 migration

kmylpenter kmylpenter
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The updatekfg skill by kmylpenter is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for AI Agents needing synchronized environment updates across devices, specifically those utilizing the KFG architecture

Core Value

Empowers agents to synchronize KFG changes across all devices, utilizing settings.json for permissions and hooks, and updating rules and status lines through the ~/.claude/ directory, leveraging file formats like .md and .json

Capabilities Granted for updatekfg

Synchronizing KFG environment updates
Validating rules and hooks across devices
Updating status lines and settings.json files

! Prerequisites & Limits

  • Requires KFG architecture setup
  • Needs access to ~/.claude/ directory
  • Limited to devices with KFG installation
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

updatekfg

Install updatekfg, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

/updatekfg - Aktualizacja środowiska KFG

Skill do synchronizacji zmian KFG na wszystkie urządzenia.

Architektura KFG (PRZECZYTAJ!)

KFG/.claude/           →  ~/.claude/ (instalatory kopiują)
├── CLAUDE.md          →  CLAUDE.md (globalne instrukcje)
├── settings.json      →  settings.json (permissions + hooks + statusLine)
├── rules/*.md         →  rules/*.md (reguły automatyczne)
├── hooks/*            →  hooks/* (skrypty walidacji)
├── welcome.txt        →  welcome.txt
├── statusline-wrapper.ps1/.sh  →  statusline wrapper
├── analyze-history.ps1         →  analiza historii (Windows)
└── export-device-stats.ps1     →  eksport stats (Windows)

KFG/platform/
├── android/           →  Android-specific overrides (merge przy instalacji)
└── windows/           →  Windows-specific overrides

KFG/setup/config/
├── termux/.bashrc     →  ~/.bashrc (Android - append)
├── termux/.tmux.conf  →  ~/.tmux.conf (Android)
├── ccstatusline/      →  ~/.config/ccstatusline/ (statusline config)
└── .templates/        →  ~/.templates/ (szablony walidacji)

KFG/desktop/
├── install.ps1        →  Jednorazowy instalator Windows (generuje inline)
├── sync-env.ps1       →  Auto-sync przy każdym `cc` (kopiuje z KFG)
└── config/            →  Windows-specific configs

Mechanizmy synchronizacji

PlatformaInstalacjaCodzienna sync
Windowsdesktop/install.ps1Junction (jak symlink) LUB sync-env.ps1
Androidinstall.sh (symlink)Automatyczny (symlink)

WAŻNE:

  • Android używa SYMLINK ~/.claude/ → KFG/.claude/ - zmiany w KFG są natychmiast widoczne
  • Windows: install.ps1 tworzy JUNCTION ~/.claude/ → KFG/.claude/ (jak symlink)
    • Edycja ~/.claude/* = edycja KFG/.claude/* (ten sam plik!)
    • Git widzi zmiany w KFG/.claude/ automatycznie
    • Jeśli junction nie działa: sync-env.ps1 kopiuje przy cc

UWAGA dla Claude: Edytuj ~/.claude/CLAUDE.md LUB KFG/.claude/CLAUDE.md - to ten sam plik (junction)!

Checklist: Co zaktualizować

Przed commitem sprawdź które pliki dotyczą zmiany:

1. Instrukcje Claude (CLAUDE.md, rules/)

[ ] KFG/.claude/CLAUDE.md - główne instrukcje
[ ] KFG/.claude/rules/*.md - reguły automatyczne

Sync: Android=natychmiast, Windows=przy cc

2. Settings (permissions, hooks, statusLine)

[ ] KFG/.claude/settings.json - base settings
[ ] KFG/platform/android/settings-override.json - Android override
[ ] KFG/platform/windows/settings-override.json - Windows override (jeśli istnieje)

Sync: Android=natychmiast, Windows=sync-env kopiuje tylko jeśli nie istnieje lub -Force

3. Hooks (walidacja, pre-compact)

[ ] KFG/.claude/hooks/*.ps1 - Windows hooks
[ ] KFG/.claude/hooks/*.sh - Android hooks

Sync: Android=natychmiast, Windows=sync-env

4. StatusLine scripts

[ ] KFG/.claude/statusline-wrapper.ps1 - Windows wrapper
[ ] KFG/.claude/statusline-wrapper.sh - Android wrapper
[ ] KFG/.claude/analyze-history.ps1 - analiza historii (Windows only)
[ ] KFG/.claude/export-device-stats.ps1 - eksport stats (Windows only)
[ ] KFG/setup/config/ccstatusline/settings.json - ccstatusline config

Sync: Windows=sync-env, Android=symlink (ale .sh tylko!)

5. Bashrc / Shell functions

[ ] KFG/setup/config/termux/.bashrc - funkcje bash (p, np, cc, gs...)
[ ] KFG/setup/config/bashrc - alternative location

Sync: Android=wymaga source ~/.bashrc lub reinstall

6. Templates

[ ] KFG/setup/config/.templates/ - szablony walidacji
[ ] KFG/.templates/ - alternative location

Sync: Android=install.sh kopiuje, Windows=install.ps1 generuje inline

7. Instalatory (jeśli zmiana wymaga)

[ ] KFG/install.sh - Android/Linux instalator
[ ] KFG/desktop/install.ps1 - Windows instalator
[ ] KFG/desktop/sync-env.ps1 - Windows daily sync

Workflow aktualizacji

Mała zmiana (reguły, instrukcje)

bash
1# 1. Edytuj pliki w KFG/.claude/ 2# 2. Commit + push 3git add -A && git commit -m "update: [co]" && git push 4 5# Android: automatycznie (symlink) 6# Windows: przy następnym `cc` (sync-env.ps1)

Duża zmiana (nowy feature, settings)

bash
1# 1. Edytuj pliki źródłowe w KFG/ 2# 2. Sprawdź czy sync-env.ps1 obsługuje nowe pliki 3# 3. Commit + push 4# 4. Na innych urządzeniach: git pull (Android) lub cc (Windows)

Zmiana wymagająca reinstalacji

bash
1# Jeśli zmieniłeś: 2# - install.sh / install.ps1 3# - strukturę katalogów 4# - nowe pliki których sync-env nie kopiuje 5 6# Android: ./install.sh --force 7# Windows: .\desktop\install.ps1 (lub cc z -Force sync)

Przykłady

Dodanie nowej reguły

1. Utwórz: KFG/.claude/rules/nowa-regula.md
2. git add && commit && push
3. Android: automatycznie działa (symlink)
4. Windows: przy następnym `cc`

Zmiana statusline

1. Edytuj: KFG/.claude/statusline-wrapper.ps1 (Windows)
2. Edytuj: KFG/.claude/statusline-wrapper.sh (Android) - jeśli dotyczy
3. sync-env.ps1 już kopiuje te pliki
4. git add && commit && push

Nowy skrypt do sync

1. Utwórz skrypt w KFG/.claude/
2. Dodaj do sync-env.ps1 $statuslineScripts array (jeśli .ps1)
3. Dla Android: utwórz .sh wersję (symlink = auto)
4. git add && commit && push

Weryfikacja

Po aktualizacji sprawdź:

powershell
1# Windows - sprawdź czy pliki są aktualne 2ls ~/.claude/*.ps1 3cat ~/.claude/CLAUDE.md | head -20 4 5# Porównaj z KFG 6diff ~/.claude/CLAUDE.md $KFG/.claude/CLAUDE.md
bash
1# Android - symlink powinien działać 2ls -la ~/.claude/ # powinno pokazać -> KFG/.claude/ 3cat ~/.claude/CLAUDE.md | head -20

TODO (brakujące)

  • Android: analyze-history.sh (bash wersja)
  • Android: export-device-stats.sh (bash wersja)
  • Cross-device stats agregacja na Androidzie

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is updatekfg?

Perfect for AI Agents needing synchronized environment updates across devices, specifically those utilizing the KFG architecture KFG CCv2 Installer Stable - backup before CCv3 migration

How do I install updatekfg?

Run the command: npx killer-skills add kmylpenter/KFG-CCv2-Installer-Stable/updatekfg. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for updatekfg?

Key use cases include: Synchronizing KFG environment updates, Validating rules and hooks across devices, Updating status lines and settings.json files.

Which IDEs are compatible with updatekfg?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for updatekfg?

Requires KFG architecture setup. Needs access to ~/.claude/ directory. Limited to devices with KFG installation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add kmylpenter/KFG-CCv2-Installer-Stable/updatekfg. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use updatekfg immediately in the current project.

Related Skills

Looking for an alternative to updatekfg or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI