One-click install
npx skills add https://github.com/Creative-Workz-Studio-LLC/bereshit --skill create-code-creative-workz-studio-llc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-code
Source: https://github.com/Creative-Workz-Studio-LLC/bereshit/tree/main/word/claude/skills/create-code
Command: npx skills add https://github.com/Creative-Workz-Studio-LLC/bereshit --skill create-code-creative-workz-studio-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires cws.studio/skills/create-code/scripts/pkg/config, cws.studio/skills/create-code/scripts/pkg/codegen, cws.studio/pkg/util/fs/toml, and includes scripts (resource) components.

What problem does it solve?

This skill helps developers create and bootstrap code templates using a uniform four-block layout (METADATA, SETUP, BODY, CLOSING) to reduce boilerplate and ensure consistency across languages.

Core Features & Use Cases

  • Enforces a repeatable 4-block structure for new code files (library, executable, or script) in Go, Bash, or Python.
  • Generates templates with standardized metadata, setup, core logic, and cleanup sections, enabling quick scaffolding of new projects.
  • Use case: bootstrap a new CLI tool by applying the 4-block pattern and then filling in language-specific logic.

Quick Start

Copy the 4-block code template, then fill METADATA, SETUP, BODY, and CLOSING to create a new project.

Frequently Asked Questions about create-code

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I standardize code scaffolding for Go, Bash, and Python projects?

You can standardize code scaffolding by generating templates with a four-block pattern that separates metadata, setup, body, and closing sections. This enforces consistent file structures across Go, Bash, and Python executables or libraries.

What is the four-block pattern for code generation?

The four-block pattern for code generation divides files into METADATA, SETUP, BODY, and CLOSING sections. It enforces identity through YAML frontmatter and includes basic health checks and versioning rules to reduce boilerplate.

Can I bootstrap a new CLI tool using a structured template?

You can bootstrap a new CLI tool by applying the four-block template and then filling in the language-specific logic. This provides a standardized foundation with predefined metadata, setup, core logic, and cleanup sections for rapid development.

Does this scaffolding approach support YAML frontmatter for identity management?

This scaffolding approach supports YAML frontmatter to enforce file identity within the METADATA block. It standardizes project metadata alongside basic health checks and versioning rules across generated code files.

What are the limitations of using the four-block pattern for code templates?

The four-block pattern is limited to Go, Bash, and Python projects for generating executables, libraries, or scripts. It enforces a strict METADATA, SETUP, BODY, and CLOSING structure, which may not suit architectures requiring different file layouts.