소스 정보
- 저장소
- agent0ai/space-agent
- 최근 소스 활동
- 2026년 4월 17일 16:40
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,385
- 포크
- 318
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/agent0ai/space-agent --skill skill-authoring명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Read the supplemental project documentation module
Frontend development router. Load deeper skills before editing
Use the frontend API surface correctly for app files, discovery, identity, and permission-aware browser data access.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Skill Authoring |
| description | Author or update onscreen agent skills under ext/skills |
Use this skill when creating or updating skills for the onscreen chat agent.
mod/<author>/<repo>/ext/skills/....app/L0/_all/mod/_core/skillset/ext/skills/....ext/skills/... tree.app/L0/_admin/mod/_core/<module>/ext/skills/....SKILL.md.ext/skills/ with the trailing /SKILL.md removed.Examples:
mod/_core/skillset/ext/skills/browser-control/SKILL.md -> browser-controlmod/_core/skillset/ext/skills/development/SKILL.md -> developmentmod/_core/skillset/ext/skills/development/modules-routing/SKILL.md -> development/modules-routingext/skills/*/SKILL.md.space.skills.load(...) calls evaluate the current document's <x-context> tags before a skill is eligible.metadata.when may be true or a { tags: [...] } condition; metadata.when.tags requires all listed tags before the skill becomes catalog-loadable.metadata.placement accepts system, transient, or history; ordinary skills default missing or invalid placement to history, but auto-loaded skills may not resolve to history, so missing or invalid placement and explicit history all fall back to system unless the skill explicitly sets transient.ext/skills/*/SKILL.md skills can auto-load through prompt discovery. Nested skills stay explicit-load-only routing targets even if they define metadata.loaded.auto loaded prompt block when their effective placement is system, or in the transient channel when they explicitly set metadata.placement: transient.space.skills.load("<path>") loads the full skill file on demand and applies the same placement rule.history placement keeps the loaded skill body in ordinary execution-output history.system placement stores the loaded skill in the current chat's runtime system-skill registry and execution reports skill loaded to system message.transient placement stores the loaded skill in the current chat's runtime transient-skill registry and execution reports skill loaded to transient area.history; if they also set metadata.loaded, then metadata.placement: history is treated as system.await space.skills.load("<path>") is enough to apply the placement; use return only if you also want the execution result value explicitly._all skills that those users can also read.name, description, and optional runtime-owned metadata.data-runtime="browser" in normal web sessions or data-runtime="app" in the packaged desktop runtime, plus the derived tag runtime-browser or runtime-app; packaged app routes derive that from the desktop bridge before falling back to launcher runtime info or frontend config./mod/_core/framework/js/context.js when code needs to read the current live <x-context> set directly; use getTags(...) for tag collection, getAttributeValues("data-runtime", ...) for raw runtime reads, and the other helpers for broader context inspection.<x-context> tags in mounted DOM when a module needs to expose additional live skill-filter state such as onscreen, admin, route:spaces, or space:open.metadata.when.tags when the skill should exist only in those live contexts.metadata.loaded only when the skill should be auto-injected without an explicit space.skills.load(...) call.metadata.placement: system when the skill body is durable instruction, metadata.placement: transient when it should live in the mutable transient block, and let the default history placement stand only for ordinary non-auto-loaded skills that should behave like normal conversation context./mod/<author>/<repo>/ext/skills/... path instead of pasting a long inline script into SKILL.md.AGENTS.md file inside that subtree and keep it current./mod/_core/documentation/docs/ and the documentation skill at /mod/_core/documentation/ext/skills/documentation/SKILL.md in the same session.AGENTS.md files./mod/_core/skillset/ext/skills/development/AGENTS.md current whenever the framework, router, API, layer, or auth contracts it mirrors change.