技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 45 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:bytesagain3/create
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's requested resources and instructions match its stated purpose (local project-scaffolding reference script); nothing in the manifest demands unrelated credentials or installs, but I could not verify the very end of the bundled shell script (file was truncated in the review material).
目的
Name/description (project scaffolding) align with the provided assets: an instruction-only SKILL.md that invokes a bundled scripts/script.sh which prints scaffolding guidance. There are no unrelated env vars, binaries, or config path requirements declared.
说明范围
SKILL.md's runtime instructions are explicit: call scripts/script.sh with one of the listed subcommands. That stays within scaffolding/docs scope. Note: the agent will execute a bundled shell script, so the runtime behavior depends on that script's contents (which were largely visible and appeared to be documentation-only).
安装机制
No install spec is provided (instruction-only), so nothing is downloaded or written to disk by an installer. The only code shipped is a local shell script included in the skill bundle.
证书
No required environment variables, credentials, or config paths are declared. SKILL.md documents an optional CREATE_DIR configuration but does not require secrets or unrelated tokens.
持久
Skill is not forced always-on and uses default autonomous invocation settings. It does not request elevated platform privileges or attempt to modify other skills' configurations in the reviewed materials.
综合结论
This skill is coherent with its purpose: it runs a local shell script that prints project-scaffolding guidance. Before installing or allowing autonomous invocation, review the full scripts/script.sh file yourself (ensure there are no commands that write files, execute downloads, or run external network calls you don't expect). Because the provided script was truncated in the review bundle, either (1) inspect the complete script in the reposito…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Create」。简介:Project scaffolding reference — boilerplate generation, directory structures, t…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/bytesagain3/create/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: "create"
version: "1.0.0"
description: "Project scaffolding reference — boilerplate generation, directory structures, template engines, and init patterns. Use when bootstrapping new projects or generating starter code."
author: "BytesAgain"
homepage: "https://bytesagain.com"
source: "https://github.com/bytesagain/ai-skills"
tags: [create, scaffold, boilerplate, init, template, generator, devtools]
category: "devtools"
---
# Create — Project Scaffolding Reference
Quick-reference skill for project scaffolding, boilerplate generation, and initialization patterns.
## When to Use
- Bootstrapping a new project from scratch
- Generating directory structures and boilerplate files
- Understanding popular scaffolding tools and templates
- Setting up project conventions (linting, testing, CI/CD)
- Creating custom project generators
## Commands
### `intro`
```bash
scripts/script.sh intro
```
Overview of project scaffolding — why, when, and how.
### `structures`
```bash
scripts/script.sh structures
```
Standard directory structures for common project types.
### `tools`
```bash
scripts/script.sh tools
```
Popular scaffolding tools — create-react-app, cookiecutter, yeoman, etc.
### `templates`
```bash
scripts/script.sh templates
```
Template engine patterns — variable substitution, conditionals, loops.
### `configs`
```bash
scripts/script.sh configs
```
Essential config files every project needs — .gitignore, .editorconfig, CI, etc.
### `conventions`
```bash
scripts/script.sh conventions
```
Project conventions — naming, versioning, commit messages, changelog.
### `monorepo`
```bash
scripts/script.sh monorepo
```
Monorepo scaffolding — workspaces, nx, turborepo, lerna.
### `checklist`
```bash
scripts/script.sh checklist
```
New project checklist — from idea to first commit.
### `help`
```bash
scripts/script.sh help
```
### `version`
```bash
scripts/script.sh version
```
## Configuration
| Variable | Description |
|----------|-------------|
| `CREATE_DIR` | Data directory (default: ~/.create/) |
---
*Powered by BytesAgain | bytesagain.com | hello@bytesagain.com*