소스 정보
- 저장소
- agent0ai/space-agent
- 최근 소스 활동
- 2026년 6월 8일 10:37
- 감지된 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 development명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Read the supplemental project documentation module
Use the frontend API surface correctly for app files, discovery, identity, and permission-aware browser data access.
Inspect, navigate, and interact with open browser surfaces through space.browser
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Development |
| description | Frontend development router. Load deeper skills before editing |
| metadata | {"loaded":true,"placement":"system"} |
Use this skill first for any development task. This is a routing skill: it tells you which deeper development skills to load next. Do not rely on this file alone as the full contract.
When the user wants to extend the system with a reusable interface rather than a space widget, prefer a custom routed page module plus an optional ext/panels/*.yaml dashboard entry instead of pushing everything into spaces.
app/.server/, commands/, or packaging/ from this skill set.development/backend-reference only to understand backend contracts that the frontend calls into.documentation skill and use its built-in docs map before diving into narrower docs.await space.api.userSelfInfo() and derive writable roots from username, managedGroups, and _admin membership in groups.development/frontend-runtime and use runtime-managed fetch(...), space.fetchExternal(...), or space.proxy.buildUrl(...) instead.AGENTS.md files and the matching docs under /mod/_core/documentation/docs/ in the same session as your code changes.development/modules-routingLoad this first for routed feature work, dashboard panels, route paths, router anchors, and deciding whether a feature should be a custom page instead of a space.
Current panel helper:
/mod/_core/skillset/ext/skills/development/modules-routing/panel-tools.jslistPanels(), findPanel(target), resolvePanelRoutePath(target), createPanelHref(target), and goToPanel(target) when the task needs to inspect or navigate the current user's visible dashboard panelsdevelopment/frontend-runtimeLoad for framework-backed pages, Alpine stores, space.* runtime usage, shared visual rules, and general frontend structure.
development/extensions-componentsLoad for ext/html/, ext/js/, x-extension, x-component, x-context, and layered override behavior.
development/app-files-apisLoad for space.api, app-file storage paths, file_paths, userSelfInfo, and permission-aware frontend reads or writes.
development/layers-ownershipLoad for L0 or L1 or L2, group and user structure, permissions, writable roots, and override order.
development/skillsLoad for authoring or updating onscreen chat-agent skills under ext/skills/, including how to keep skills short by importing helper scripts.
development/backend-referenceLoad for read-only backend architecture, API families, auth, and module-resolution behavior when frontend work depends on an existing server contract.
await space.skills.load("development/layers-ownership")await space.skills.load("development/modules-routing")await space.skills.load("development/extensions-components")await space.skills.load("development/frontend-runtime")await space.skills.load("development/app-files-apis") if the feature stores user or group dataawait space.skills.load("development/modules-routing")await space.skills.load("development/extensions-components")await space.skills.load("development/frontend-runtime")await space.skills.load("development/app-files-apis") if the page needs frontend discovery of registered panels or other permission-aware app dataawait space.skills.load("development/skills")await space.skills.load("development/layers-ownership")await space.skills.load("development/extensions-components") if the skill must explain extension seamsawait space.skills.load("development/app-files-apis")await space.skills.load("development/backend-reference")Before changing a concrete module, also read the closest owning AGENTS.md in that module's subtree and the relevant documentation page when one exists. The development skills are the cross-cutting map, the documentation skill plus helper are the narrative map, and the local AGENTS.md file is the final implementation contract.