sync-to-kag — for Claude Code sync-to-kag, marp-agent, community, for Claude Code, ide skills, marp-agent-kag, upstream, git merge, bash git log main --oneline -5, ### 3. プッシュしてmainリポジトリに戻る

v1.0.0

About this Skill

Ideal for AI agents that need mainの変更をkagリポジトリに適用. sync-to-kag is an AI agent skill for mainの変更をkagリポジトリに適用.

Features

mainの変更をkagリポジトリに適用
ユーザーが「kagにも適用して」「kag環境にも反映して」と言った場合、このスキルに従ってチェリーピックを実行する。
mainとkagは 完全に別のGitHubリポジトリ として管理されている:
環境 リポジトリ ローカルパス ブランチ
------ ----------- ------------ ---------

# Core Topics

minorun365 minorun365
[70]
[18]
Updated: 4/7/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Ideal for AI agents that need mainの変更をkagリポジトリに適用. sync-to-kag is an AI agent skill for mainの変更をkagリポジトリに適用.

Core Value

sync-to-kag helps agents mainの変更をkagリポジトリに適用. sync-to-kag helps AI agents handle repository-specific developer workflows with documented implementation details.

Ideal Agent Persona

Ideal for AI agents that need mainの変更をkagリポジトリに適用.

Capabilities Granted for sync-to-kag

Applying mainの変更をkagリポジトリに適用
Applying ユーザーが「kagにも適用して」「kag環境にも反映して」と言った場合、このスキルに従ってチェリーピックを実行する。
Applying mainとkagは 完全に別のGitHubリポジトリ として管理されている:

! Prerequisites & Limits

  • git diff --name-only --diff-filter=U
  • Requires repository-specific context from the skill documentation
  • Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

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

FAQ & Installation Steps

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

? Frequently Asked Questions

What is sync-to-kag?

Ideal for AI agents that need mainの変更をkagリポジトリに適用. sync-to-kag is an AI agent skill for mainの変更をkagリポジトリに適用.

How do I install sync-to-kag?

Run the command: npx killer-skills add minorun365/marp-agent/sync-to-kag. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for sync-to-kag?

Key use cases include: Applying mainの変更をkagリポジトリに適用, Applying ユーザーが「kagにも適用して」「kag環境にも反映して」と言った場合、このスキルに従ってチェリーピックを実行する。, Applying mainとkagは 完全に別のGitHubリポジトリ として管理されている:.

Which IDEs are compatible with sync-to-kag?

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 sync-to-kag?

git diff --name-only --diff-filter=U. Requires repository-specific context from the skill documentation. Works best when the underlying tools and dependencies are already configured.

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 minorun365/marp-agent/sync-to-kag. 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 sync-to-kag immediately in the current project.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

sync-to-kag

Install sync-to-kag, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

mainの変更をkagリポジトリに適用

ユーザーが「kagにも適用して」「kag環境にも反映して」と言った場合、このスキルに従ってチェリーピックを実行する。

構成

mainとkagは完全に別のGitHubリポジトリとして管理されている:

環境リポジトリローカルパスブランチ
main(本番)minorun365/marp-agent../marp-agentmain
kagminorun365/marp-agent-kag../marp-agent-kagmain

kagリポジトリには upstream リモートとして marp-agent が登録されている。

重要:なぜチェリーピックなのか

  • mainとkagは別リポジトリで独立して開発されている
  • git merge するとコンフリクトが大量発生する
  • 必要な変更だけをチェリーピックで適用するのが正しい方法

同期対象

カテゴリ対象
機能アプリのコード変更agent.py, コンポーネント
Codex設定スキル、サブエージェント.Codex/skills/, .Codex/agents/

同期しないもの:

  • docs/ 配下のドキュメント - kagは差分のみ記載する方針のため、mainのドキュメント変更は反映しない
  • docs/todo.md - リポジトリ別に管理
  • 環境固有の設定(resource.ts の環境変数など)

手順

1. mainリポジトリで適用するコミットを確認

bash
1git log main --oneline -5

直近でコミットした内容を確認し、コード変更のみをチェリーピック対象とする(ドキュメント変更は除外)。

2. kagリポジトリに移動してチェリーピック

bash
1cd ../marp-agent-kag 2git pull origin main 3git fetch upstream 4git cherry-pick <commit-hash>

3. プッシュしてmainリポジトリに戻る

bash
1git push origin main 2cd ../marp-agent

ワンライナー版

bash
1cd ../marp-agent-kag && git pull origin main && git fetch upstream && git cherry-pick <commit-hash> && git push origin main && cd ../marp-agent

コンフリクト発生時

bash
1# コンフリクトファイル確認 2git diff --name-only --diff-filter=U 3 4# 手動解決後 5git add <files> 6git cherry-pick --continue 7 8# 中止する場合 9git cherry-pick --abort

注意

  • 環境固有の設定ファイル(resource.ts等)はkag側で別の値になっている可能性あり
  • コンフリクト発生時はユーザーに確認を取ること

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer