{
  "schemaVersion": "1.0",
  "item": {
    "slug": "project-scaffold",
    "name": "Project Scaffold",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cmanfre7/project-scaffold",
    "canonicalUrl": "https://clawhub.ai/cmanfre7/project-scaffold",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/project-scaffold",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=project-scaffold",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/project-scaffold"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/project-scaffold",
    "agentPageUrl": "https://openagent3.xyz/skills/project-scaffold/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-scaffold/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-scaffold/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "project-scaffold",
        "body": "Scaffold new projects with best-practice structure, tooling, and configuration."
      },
      {
        "title": "Usage",
        "body": "When Colt (or you) needs to start a new project, use this skill to generate the full boilerplate."
      },
      {
        "title": "Decision Tree",
        "body": "Ask or infer the project type:"
      },
      {
        "title": "Web App (React / Next.js)",
        "body": "my-app/\n├── src/\n│   ├── app/              # Next.js app router\n│   ├── components/       # Reusable UI components\n│   ├── lib/              # Utilities, helpers, API clients\n│   ├── styles/           # Global styles, Tailwind config\n│   └── types/            # TypeScript type definitions\n├── public/               # Static assets\n├── tests/                # Test files\n├── .gitignore\n├── .eslintrc.json\n├── tailwind.config.ts\n├── tsconfig.json\n├── package.json\n└── README.md\n\nInit commands:\n\nnpx create-next-app@latest my-app --typescript --tailwind --eslint --app --src-dir\ncd my-app && npm install"
      },
      {
        "title": "API / Backend (FastAPI)",
        "body": "my-api/\n├── app/\n│   ├── __init__.py\n│   ├── main.py           # FastAPI app entry\n│   ├── routers/          # Route modules\n│   ├── models/           # Pydantic models / DB models\n│   ├── services/         # Business logic\n│   └── config.py         # Settings / env vars\n├── tests/\n├── .gitignore\n├── pyproject.toml\n├── requirements.txt\n└── README.md\n\nInit commands:\n\nmkdir my-api && cd my-api\nuv init && uv pip install fastapi uvicorn"
      },
      {
        "title": "Mobile App (SwiftUI)",
        "body": "MyApp/\n├── MyApp/\n│   ├── App.swift\n│   ├── ContentView.swift\n│   ├── Models/\n│   ├── Views/\n│   ├── ViewModels/\n│   └── Services/\n├── MyAppTests/\n├── MyAppUITests/\n└── README.md\n\nInit: Use Xcode or swift package init --type executable"
      },
      {
        "title": "CLI Tool (Node / Python)",
        "body": "my-cli/\n├── src/\n│   └── index.ts          # Entry point\n├── bin/\n│   └── my-cli            # Executable wrapper\n├── tests/\n├── .gitignore\n├── tsconfig.json\n├── package.json\n└── README.md"
      },
      {
        "title": "Browser Extension",
        "body": "my-extension/\n├── src/\n│   ├── background.ts\n│   ├── content.ts\n│   ├── popup/\n│   │   ├── popup.html\n│   │   ├── popup.ts\n│   │   └── popup.css\n│   └── options/\n├── icons/\n├── manifest.json\n├── .gitignore\n├── tsconfig.json\n├── package.json\n└── README.md"
      },
      {
        "title": "Post-Scaffold Checklist",
        "body": "After generating structure:\n\ngit init && git add -A && git commit -m \"Initial scaffold\"\nCreate .gitignore appropriate to the project type\nSet up linting config (ESLint / Ruff)\nAdd a basic README with project name and setup instructions\nAdd a basic test file to verify the test runner works"
      },
      {
        "title": ".gitignore (universal base)",
        "body": "node_modules/\n__pycache__/\n.env\n.env.local\ndist/\nbuild/\n.next/\n*.pyc\n.DS_Store\n*.log\ncoverage/"
      }
    ],
    "body": "project-scaffold\n\nScaffold new projects with best-practice structure, tooling, and configuration.\n\nUsage\n\nWhen Colt (or you) needs to start a new project, use this skill to generate the full boilerplate.\n\nDecision Tree\n\nAsk or infer the project type:\n\nWeb App (React / Next.js)\nmy-app/\n├── src/\n│   ├── app/              # Next.js app router\n│   ├── components/       # Reusable UI components\n│   ├── lib/              # Utilities, helpers, API clients\n│   ├── styles/           # Global styles, Tailwind config\n│   └── types/            # TypeScript type definitions\n├── public/               # Static assets\n├── tests/                # Test files\n├── .gitignore\n├── .eslintrc.json\n├── tailwind.config.ts\n├── tsconfig.json\n├── package.json\n└── README.md\n\n\nInit commands:\n\nnpx create-next-app@latest my-app --typescript --tailwind --eslint --app --src-dir\ncd my-app && npm install\n\nAPI / Backend (FastAPI)\nmy-api/\n├── app/\n│   ├── __init__.py\n│   ├── main.py           # FastAPI app entry\n│   ├── routers/          # Route modules\n│   ├── models/           # Pydantic models / DB models\n│   ├── services/         # Business logic\n│   └── config.py         # Settings / env vars\n├── tests/\n├── .gitignore\n├── pyproject.toml\n├── requirements.txt\n└── README.md\n\n\nInit commands:\n\nmkdir my-api && cd my-api\nuv init && uv pip install fastapi uvicorn\n\nMobile App (SwiftUI)\nMyApp/\n├── MyApp/\n│   ├── App.swift\n│   ├── ContentView.swift\n│   ├── Models/\n│   ├── Views/\n│   ├── ViewModels/\n│   └── Services/\n├── MyAppTests/\n├── MyAppUITests/\n└── README.md\n\n\nInit: Use Xcode or swift package init --type executable\n\nCLI Tool (Node / Python)\nmy-cli/\n├── src/\n│   └── index.ts          # Entry point\n├── bin/\n│   └── my-cli            # Executable wrapper\n├── tests/\n├── .gitignore\n├── tsconfig.json\n├── package.json\n└── README.md\n\nBrowser Extension\nmy-extension/\n├── src/\n│   ├── background.ts\n│   ├── content.ts\n│   ├── popup/\n│   │   ├── popup.html\n│   │   ├── popup.ts\n│   │   └── popup.css\n│   └── options/\n├── icons/\n├── manifest.json\n├── .gitignore\n├── tsconfig.json\n├── package.json\n└── README.md\n\nPost-Scaffold Checklist\n\nAfter generating structure:\n\ngit init && git add -A && git commit -m \"Initial scaffold\"\nCreate .gitignore appropriate to the project type\nSet up linting config (ESLint / Ruff)\nAdd a basic README with project name and setup instructions\nAdd a basic test file to verify the test runner works\nAsset Templates\n.gitignore (universal base)\nnode_modules/\n__pycache__/\n.env\n.env.local\ndist/\nbuild/\n.next/\n*.pyc\n.DS_Store\n*.log\ncoverage/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/cmanfre7/project-scaffold",
    "publisherUrl": "https://clawhub.ai/cmanfre7/project-scaffold",
    "owner": "cmanfre7",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/project-scaffold",
    "downloadUrl": "https://openagent3.xyz/downloads/project-scaffold",
    "agentUrl": "https://openagent3.xyz/skills/project-scaffold/agent",
    "manifestUrl": "https://openagent3.xyz/skills/project-scaffold/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/project-scaffold/agent.md"
  }
}