euni-commands-guide — community excel-unidiff-cli, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for DevOps Agents needing Unicode normalization management across macOS, Linux, and Windows CI runners. Cross-platform CLI to detect and fix Unicode normalization (NFC/NFD) Git diffs in repositories and submodules, preventing phantom Excel file changes across macOS, Linux, and Windows CI runners.

takuto-tanaka-4digit takuto-tanaka-4digit
[0]
[0]
Updated: 2/27/2026

Agent Capability Analysis

The euni-commands-guide skill by takuto-tanaka-4digit 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 DevOps Agents needing Unicode normalization management across macOS, Linux, and Windows CI runners.

Core Value

Empowers agents to detect and fix Unicode normalization issues via Git diffs using the `excel-unidiff-cli` (`euni`) command-line tool, preventing phantom Excel file changes and ensuring consistent repository states by leveraging `euni init-policy`, `euni check`, and `euni apply` commands.

Capabilities Granted for euni-commands-guide

Automating Unicode normalization checks for Git repositories and submodules
Debugging phantom Excel file changes across different operating systems
Applying policy drift fixes via `git config --local` for consistent repository management

! Prerequisites & Limits

  • Requires `excel-unidiff-cli` installation
  • Limited to Git repositories and submodules
  • Needs `--repo` specification for `.euni.yml` template creation
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

euni-commands-guide

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

SKILL.md
Readonly

euni Commands (English)

Operational playbook for excel-unidiff-cli (euni). Goal: decide quickly which command to run, in what order, and how to interpret results.

Command Map

  • euni init-policy
    • Create .euni.yml template in --repo.
  • euni check
    • Non-destructive check for policy drift + Unicode findings on tracked files.
  • euni apply
    • Apply policy drift fixes via git config --local only.
    • Use --dry-run before writing.
    • Use --repair-unicode-deletes to restore staged/worktree deleted tracked paths in core.precomposeunicode=false mode.
    • The repair keeps staged non-delete changes (worktree-only delete is restored with git restore --worktree).
    • Caution: this restores deleted tracked paths in scope; do not use when deletions are intentional.
  • euni doctor
    • Combined diagnosis (check + scan-like Unicode analysis).
  • euni scan
    • Unicode path analysis on tracked + untracked files (no policy input).
  • euni version
    • Print euni <version> (<commit>).

Core Rules

  • Subcommand required; no standalone help command.
  • --recursive default is false (root repo only).
  • Write operations are only apply and init-policy.
  • scan does not accept --policy.
  • version accepts no options.
  • --format is text or json only.

1) First-time setup

bash
1euni init-policy --repo . 2euni check --repo . --recursive --policy ./.euni.yml

2) Drift remediation loop

bash
1euni apply --repo . --recursive --policy ./.euni.yml --dry-run 2euni apply --repo . --recursive --policy ./.euni.yml 3euni check --repo . --recursive --policy ./.euni.yml

3) Unicode phantom delete repair (one command)

bash
1euni apply --repo . --recursive --policy ./.euni.yml --repair-unicode-deletes

4) Hard-case diagnosis

bash
1euni doctor --repo . --recursive --policy ./.euni.yml 2euni scan --repo . --recursive --format json

CI Recipe (Deterministic Gate)

bash
1euni check \ 2 --repo . \ 3 --recursive \ 4 --policy ./.euni.yml \ 5 --non-interactive \ 6 --format json > euni-report.json

Gate expectations:

  • Validate against schema/euni-report.schema.json.
  • Ensure process exit code matches report.exitCode.
  • Treat exit 1 as findings (operational failure), exit 2 as execution/runtime failure.
  • Upload euni-report.json as artifact.

JSON contract:

  • stdout: exactly one JSON object.
  • stderr: logs/progress/error details.

Exit Codes

  • 0: no findings, no errors.
  • 1: findings present.
  • 2: execution error.

Precedence: if any execution error exists, exit is 2.

UG Code Triage (Quick)

Common findings (exit 1):

  • UG004: config drift detected.
  • UG005: NFC collision detected.
  • UG011: combining mark in path.
  • UG012: non-standard FS entry (symlink/reparse/mount).
  • UG013: ambiguous policy path key (case-only collision).
  • UG014: unicode delete repair signal (dry-run plan or runtime safety skip).

Common execution errors (exit 2):

  • UG001: invalid/inaccessible --repo.
  • UG002: git command/runtime failure.
  • UG003: policy load failure.
  • UG006: submodule uninitialized/inaccessible.
  • UG007: invalid policy structure/unsupported keys.
  • UG008: .euni.yml exists without --force.
  • UG009: unsupported command/option usage.
  • UG010: gitdir/top-level outside --repo boundary.

Local Source Run Note

When running via go run, non-zero app exits may appear as process exit 1 (Go tool wrapper behavior). For strict 0/1/2 contract checks, build and run the binary directly:

bash
1go build -o ./bin/euni ./cmd/euni 2./bin/euni check --repo . --policy ./.euni.yml 3echo $?

FAQ & Installation Steps

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

? Frequently Asked Questions

What is euni-commands-guide?

Perfect for DevOps Agents needing Unicode normalization management across macOS, Linux, and Windows CI runners. Cross-platform CLI to detect and fix Unicode normalization (NFC/NFD) Git diffs in repositories and submodules, preventing phantom Excel file changes across macOS, Linux, and Windows CI runners.

How do I install euni-commands-guide?

Run the command: npx killer-skills add takuto-tanaka-4digit/excel-unidiff-cli. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for euni-commands-guide?

Key use cases include: Automating Unicode normalization checks for Git repositories and submodules, Debugging phantom Excel file changes across different operating systems, Applying policy drift fixes via `git config --local` for consistent repository management.

Which IDEs are compatible with euni-commands-guide?

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 euni-commands-guide?

Requires `excel-unidiff-cli` installation. Limited to Git repositories and submodules. Needs `--repo` specification for `.euni.yml` template creation.

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 takuto-tanaka-4digit/excel-unidiff-cli. 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 euni-commands-guide immediately in the current project.

Related Skills

Looking for an alternative to euni-commands-guide 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