Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CodySwannGT/lisa --skill lisa-wiki-install명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lisa-wiki-install |
| description | Bootstrap the LLM Wiki kernel… |
| allowed-tools | ["Bash","Read","Write","Edit"] |
This skill makes the lisa-wiki plugin visible in the current project so its scaffolder (/setup:wiki / $lisa-wiki-setup) can run. It does not scaffold the wiki itself — that is the wiki plugin's job. This skill only flips the install bit and verifies the Codex overlay carries the kernel.
lisa-wiki is published as AVAILABLE (not INSTALLED_BY_DEFAULT) in Lisa's marketplace. A downstream project that never enabled it has no way to discover the wiki's setup command — a chicken-and-egg bootstrap gap. Because the base lisa plugin is auto-enabled everywhere, putting the bootstrap here is what makes the wiki reachable.
The two runtimes work differently:
.claude/settings.json enabledPlugins. The wiki skills are invisible until lisa-wiki@lisa is enabled there. This skill makes that edit.src/codex/skills-installer.ts runs from Lisa.apply() and copies every built plugins/<p>/skills/<n>/ into .codex/skills/lisa/). Wiki skills land in that overlay automatically every time the project re-applies Lisa. This skill does not mutate Codex config — it only checks whether the overlay carries lisa-wiki-setup and tells the user how to refresh if missing.cwd="$(pwd)"
if [ -f "$cwd/.lisa-source" ] || { [ -d "$cwd/plugins/src/base" ] && [ -f "$cwd/.claude-plugin/marketplace.json" ]; }; then
echo "This is the Lisa monorepo itself — the base plugin's wiki kernel already lives here."
echo "Run /setup:wiki to scaffold a wiki, or invoke this skill from inside a downstream project."
exit 0
fi
Read <cwd>/.claude/settings.json (create with {} if absent). Then, using the Edit or Write tool with valid JSON (not jq one-liners that risk corrupting comments / formatting):
Ensure enabledPlugins is an object.
Set enabledPlugins["lisa-wiki@lisa"] = true.
Ensure extraKnownMarketplaces is an object containing the entry below if it is not already present (do not overwrite an existing entry):
"CodySwannGT/lisa": {
"source": {
"source": "github",
"repo": "CodySwannGT/lisa"
}
}
Pretty-print the file with 2-space indentation and a trailing newline.
If enabledPlugins["lisa-wiki@lisa"] was already true, log "Claude: lisa-wiki@lisa already enabled — no change." If not, log "Claude: enabled lisa-wiki@lisa in .claude/settings.json."
Do not edit .claude/settings.local.json — that file is per-user and is not the right surface for a project-level enablement.
codex_wiki_setup=".codex/skills/lisa/lisa-wiki-setup/SKILL.md"
if [ -f "$codex_wiki_setup" ]; then
echo "Codex: lisa-wiki overlay already present (found $codex_wiki_setup). Nothing to do for Codex."
else
echo "Codex: lisa-wiki skills not found in .codex/skills/lisa/."
if [ -d ".agents" ] || [ -d ".codex" ]; then
echo " → This project appears Codex-wired but its overlay is stale or predates lisa-wiki."
echo " → Refresh it by running your project's Lisa apply command, e.g.:"
echo " npx lisa --harness=codex ."
echo " (or whatever shape your project uses to apply Lisa for Codex)."
else
echo " → This project does not have a Codex installation yet (no .agents/ or .codex/). Skip if Codex parity is not needed."
fi
fi
Do not invoke lisa apply automatically. lisa apply rewrites more than the wiki overlay; it must remain the user's explicit choice.
Print:
Wiki kernel install complete.
Next steps:
• Reload your runtime so it picks up the newly-enabled plugin (Claude: /reload or restart the session; Codex: restart `codex`).
• Then run /setup:wiki (Claude) or $lisa-wiki-setup (Codex) to scaffold wiki/ in this project.
~/.codex/config.toml or any user-global config.lisa apply on the user's behalf..claude/settings.local.json — it is user-scoped overrides.lisa-wiki-setup (the actual scaffolder, lives in the lisa-wiki plugin once enabled), lisa-wiki-doctor, lisa-wiki-usage.