소스 정보
- 저장소
- different-ai/the-factory
- 최근 소스 활동
- 2026년 3월 29일 22:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 64
- 포크
- 9
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/different-ai/the-factory --skill cupid-app-architecture명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Drive the OpenWork dev renderer with Chrome MCP and verify workspace UI flows. Triggers when user mentions: - "use Chrome MCP with OpenWork" - "hook up to pnpm dev renderer" - "add an OpenWork workspace through the UI"
Create a PR with structured evidence: build verification, UI screenshots uploaded to an ephemeral host, API test results, and a verification comment. No screenshots committed to the repo. Triggers when user mentions: - "create a pr" - "make a pr" - "open a pr" - "push and pr"
Boot up the Den dev stack and the OpenWork desktop app locally, then test common flows like sign-in, dashboard, and telemetry. Triggers when user mentions: - "test den" - "test the app locally" - "boot up den" - "den dev flow" - "test sign in"
SKILL.md 표시 중
SOC 직업 분류 기준
| name | cupid-app-architecture |
| description | CUPID app architecture guidance for apps/app/src/app/** |
Use this skill when changing ownership, file placement, or structure inside apps/app/src/app/**.
This is an incremental migration guide, not a rewrite mandate.
Goals:
app.tsx, pages/*, and generic utils/*apps/app/src/app/**app.tsx, pages/dashboard.tsx, pages/session.tsx, pages/settings.tsxDo not use this skill to justify broad rewrites. Move one coherent slice at a time.
Use these domains for apps/app/src/app/** work:
Owns app-wide composition only:
Examples today:
apps/app/src/app/app.tsxapps/app/src/app/entry.tsxcontext/*.tsxShell should orchestrate domains, not absorb their feature logic.
Owns workspace lifecycle and workspace-scoped controls:
Examples today:
context/workspace.tscomponents/create-workspace-modal.tsxcomponents/create-remote-workspace-modal.tsxcomponents/rename-workspace-modal.tsxlib/workspace-blueprints.tsOwns active task/session experience:
Examples today:
pages/session.tsxcomponents/session/*context/session.tslib/opencode-session.tslib/session-title.tsOwns connections to external capabilities and providers:
Examples today:
components/provider-auth-modal.tsxcomponents/mcp-auth-modal.tsxcomponents/add-mcp-modal.tsxmcp.tsutils/providers.tsPractical rule:
connectionsconnectionsOwns scheduled or repeatable work setup:
Examples today:
context/automations.tspages/scheduled.tsxOwns hosted OpenWork and Den-specific flows:
Examples today:
lib/den.tslib/den-template-cache.tscomponents/den-settings-panel.tsxlib/openwork-deployment.tsOwns app-wide preferences and local app controls:
Examples today:
pages/settings.tsxtheme.tslib/font-zoom.tsKernel is the smallest shared layer.
Only put code here when all of the following are true:
Good fits:
Bad fits:
utilsUse these defaults when deciding where code belongs:
workspace.connections, even if launched from dashboard or settings.connections.session.cloud.app-settings.If a feature has one clear user-facing owner, keep its state, view pieces, and helpers there.
Prefer this direction:
shell -> domain public API -> local domain internals
Rules:
kernel primitives.index.ts, api.ts, or a clearly named module.Within one domain, colocate:
Do not split code across components/, context/, lib/, and utils/ just because those buckets already exist.
When touching existing generic folders, prefer creating a domain subfolder and moving only the code you are already changing.
Keep code in shell only if it is truly app-global:
If logic answers a domain question like “how do workspaces connect?” or “how does provider auth start?”, it probably does not belong in shell.
Create a new domain only when the work has:
Do not create a new domain for one helper or one modal.
If the work is still clearly part of workspace/session/connections/automations/cloud/app-settings, use a subfolder there instead.
When touching existing app architecture:
Good incremental moves:
pages/settings.tsx into connections/providers/*app.tsx into workspace/*components/session/*Bad moves:
utils/ because the correct domain feels inconvenientapp.tsxpages/* because it is already therehooks.ts, helpers.ts, or utils.ts files without a domain ownerFor app-architecture work:
app.tsx?If the answer to several of these is “no”, stop and simplify the move.