Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/WellApp-ai/Well --skill setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Connect and verify the Well MCP — authenticate, confirm the tools work, and show what to ask. Use when the user runs /well:connect, just installed the Well plugin, or says the Well connection/MCP "isn't working" / "nothing happened".
Produce an accounts-receivable aging report and surface overdue invoices for a Well workspace. Use when the user asks who owes them money, an AR aging report, overdue invoices, days sales outstanding (DSO), or which customers to chase.
Forecast cash flow and runway for a Well workspace from booked invoices and collected bank transactions. Use when the user asks for a cash-flow forecast, runway, how long until they run out of cash, projected balance, or expected inflows/outflows.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | setup |
| description | One-time environment setup for new team members |
Use this skill for first-time setup of your development environment.
Verify these are installed:
npm install in monorepo rootdocker-compose up -dnpm run migratenpm run seedFamiliarize yourself with design resources:
/docs/pattern-resources.md - External UI/UX references/docs/design-system/ folder - Internal tokens and guidelines.env.example to .env in:
apps/api/.envapps/web/.envCursor's UI auto-install can loop indefinitely. Edit ~/.cursor/mcp.json directly.
Copy this to ~/.cursor/mcp.json and replace YOUR_* placeholders:
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@notionhq/notion-mcp-server"],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Bearer YOUR_NOTION_TOKEN\", \"Notion-Version\": \"2022-06-28\"}"
}
},
"n8n-mcp": {
"command": "npx",
"args": ["-y", "supergateway", "--streamableHttp", "YOUR_N8N_URL/mcp-server/http", "--header", "authorization:Bearer YOUR_N8N_TOKEN"]
},
"context7": {
| MCP | Auth Type | How to Get Token |
|---|---|---|
| Notion | API Token | notion.so/my-integrations > New integration > Copy token |
| n8n | Bearer Token | n8n instance > Settings > API > Create key |
| Context7 | None | Just works |
| Figma Desktop | None | Enable in Figma app Dev Mode (Shift+D) |
| Figma Remote | OAuth | Use "url": "https://mcp.figma.com/mcp", click Connect in Cursor |
| Browser | None | Built-in to Cursor |
Browser MCP is built into Cursor and requires no setup. Use it for:
Tip: During feature exploration, navigate to competitor apps and use browser_take_screenshot to capture reference designs.
MCP won't install (infinite loop):
~/.cursor/mcp.jsonMCP shows disconnected:
Verification: After restart, list MCP folder to confirm all servers loaded:
ls ~/.cursor/projects/*/mcps/
Configure in Cursor Settings:
Run these to verify setup:
npm run dev - starts without errorsnpm run typecheck - passesnpm run storybook - loads componentsWhen all phases complete, you're ready to use:
init [Notion URL] - Start a new featureplan [feature] - Create implementation plan