# 4d Create Project

> Create a new 4D project from scratch. Use this skill when the user wants to initialize, create, or start a new 4D project. Creates the required folder structure and .4DProject configuration file.

- Skill: `e-marchand/4d-create-project` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add e-marchand/4d-create-project`
- Raw SKILL.md: https://api.skillmd.com/api/skills/e-marchand/4d-create-project/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: Apache 2.0
- Author: e-marchand (https://skillmd.com/u/e-marchand)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/e-marchand/4d-create-project

---


# 4D Project Creator

## Required Structure

```
<ProjectName>/
├── Project/
│   ├── Sources/
│   │   ├── Methods/
│   │   └── Classes/
│   └── <ProjectName>.4DProject
```

## .4DProject File Content

```json
{
    "compatibilityVersion": 2100,
    "tokenizedText": false
}
```

- `compatibilityVersion`: 2100 for 4D v21+
- `tokenizedText`: false for readable source code

