소스 정보
- 저장소
- osolmaz/skillflag
- 최근 소스 활동
- 2026년 7월 24일 10:00
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/osolmaz/skillflag --skill skillflag명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | skillflag |
| description | Skillflag producer/installer usage and install guidance (requires skill-install). |
This skill documents how to use the Skillflag producer CLI (skillflag) and the installer CLI (skill-install).
skillflag --skill list lists bundled skill IDsskillflag --skill export <id> exports a skill bundle as a tar streamskill-install consumes a skill directory or tar stream and installs it into a target agent scopeList skills:
skillflag --skill list
Export the bundled skill and install into Codex repo scope:
skillflag --skill export skillflag | skill-install --agent codex --scope repo
Export the bundled skill and install into Claude repo scope:
skillflag --skill export skillflag | skill-install --agent claude --scope repo
Directory input:
skill-install ./skills/skillflag --agent codex --scope repo
Tar stream input (from producer):
skillflag --skill export skillflag | skill-install --agent codex --scope repo
Tar stream input with interactive target selection (when a TTY is available):
skillflag --skill export skillflag | skill-install
Show installer usage/help:
skill-install --help
skillflag is the producer interface; it never installs.skill-install validates SKILL.md frontmatter and installs by copy.docs/SKILLFLAG_SPEC.md.--skill list--skill export <id>--skill list --json MAY be provided and must emit a single JSON object to stdout.--skill list writes only skill IDs to stdout (no banners).--skill export <id> streams a tar with a single top‑level <id>/ and <id>/SKILL.md.mtime = 0, uid/gid = 0.1 on failure.skills/<id>/SKILL.md or .agents/skills/<id>/SKILL.md.Install the library:
npm install skillflag
Global install (exposes skillflag and skill-install on PATH):
npm install -g skillflag
Run without installing (uses bundled binaries):
npx skillflag --skill list
npx skillflag install --agent codex --scope repo ./skills/skillflag
Early‑intercept in your CLI entrypoint so stdout stays clean:
// src/bin/cli.ts
import { findSkillsRoot, maybeHandleSkillflag } from "skillflag";
await maybeHandleSkillflag(process.argv, {
skillsRoot: findSkillsRoot(import.meta.url),
// includeBundledSkill: false, // opt out of the built-in skillflag skill
});
// ... normal CLI startup here
Repository layout (bundled skills):
skills/
my-skill/
SKILL.md
templates/...
Portable agent-skill layout is also supported:
.agents/
skills/
my-skill/
SKILL.md
templates/...
Package distribution:
skills/ or .agents/skills/ is included in package.json files so it ships with the npm tarball.Use the skillflag install convenience command to avoid a global install:
npx skillflag install --agent codex --scope repo ./skills/skillflag