new-project

new-project is a command for coding agents from kouroshez/coding-os. It costs 0 tokens per session (799 once invoked), scanned A, original, Apache-2.0.

A command that creates a new coding-os project from a selected technology stack or preset. It can first preview the planned setup and then generate the project with chosen agents, skills, profiles, and modules.

In plain words
What is it for?
Use it to start projects with one or more coding agents, a preset or stack templates, extra skills, a project name, and selected modules.
Why use it?
It removes the need to assemble the project structure and configuration manually, while showing conflicts before files are written.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/kouroshez/coding-os/new-project
Clone the repo
git clone --depth 1 https://github.com/kouroshez/coding-os

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for new-project

README.md
[![agentmods](https://agentmods.dev/badge/commands/kouroshez/coding-os/new-project.svg)](https://agentmods.dev/commands/kouroshez/coding-os/new-project)
Your own site
<a href="https://agentmods.dev/commands/kouroshez/coding-os/new-project"><img src="https://agentmods.dev/badge/commands/kouroshez/coding-os/new-project.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 799 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00799
Opus 5 $0.00000 $0.00400
Sonnet 5 $0.00000 $0.00160
Haiku 4.5 $0.00000 $0.00080

Measured 3d ago against content hash fe1600ebecdb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

new-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/core/commands/new-project.md · 34 lines

What it actually says

Scaffold a new coding-os project non-interactively — the official agent recipe (TASK-359).

Steps:

  1. Discover what's available (read-only):
    • cos list-stacks --format json → stacks (grouped by language) + presets.
    • cos skills-list --stack <id> --format json → required/recommended/optional skills for a stack.
  2. Preview the composition BEFORE writing anything:
    • cos init --preset <id> --dry-config (or --template a --template b --dry-config)
    • Read the swimlane union and the reported merge conflicts (later stack wins). Nothing is written.
  3. Create in one shot (every Composer option has a flag — full parity, incl. multi-agent + module toggles):
cos init \
  --agent claude \                   # one+ adapters, comma-separated: --agent claude,codex
  --preset nextjs-fastapi \          # OR: --template go-fiber --template fastapi
  --name my-app -d /path/to/parent \ # omit --name only in interactive shells
  --skills redis,docker \            # extra core skills (validated; see cos skills-list)
  --profile standard \               # module surface: lite | core | standard (default) | full
  --disable-module memory \          # optional, repeatable: turn a subsystem off at create
  --summary "One to two paragraphs describing the product, its users, and what matters most." \
  --yes --no-index
  1. Verify: exit code 0; --format json emits the summary object (path, slug, agents, templates, …). The project self-registers in the hub; --summary seeds docs/_meta/project-description.md (the description→PRD intake) and leaves _TODO: markers in the seeded PRD, so the panel still offers the guided interview.

Rules:

  • Non-TTY without --yes fails fast naming the missing flags — never rely on prompts in automation.
  • --preset and --template are mutually exclusive; unknown skills/stacks/presets exit 2 listing what exists.
  • --agent takes one or more adapters (claude, codex), comma-separated — a project may host several.
  • --profile <name> picks the module surface (cos init --help lists the live set from subsystems.yaml): lite = kernel only (discipline + safety, near-zero MCP tools — the MCP-averse adopter), core, standard (default: cognition + cicd off), full = everything. Omitting it applies the registry default, so a project can end up leaner than you expected — pass it explicitly when the surface matters.
  • --disable-module <id> (repeatable) turns one subsystem off; ids come from subsystems.yaml (docs, tasks, graph, memory, cognition, observability, hub-extras, cicd). kernel can't be disabled and a module's dependents go with it (unknown/kernel exit 2).
  • Profile and --disable-module are UNIONED — a profile can only ever remove more. --enable-module <id> (repeatable) is the escape: it force-enables a module after the union, pulls its depends_on chain in with it, and errors when the same id is also explicitly disabled; that is exactly what the Hub Composer sends for chips left on. cos module list shows the result.
  • Don't pass --name you can't validate: ^[a-z0-9][a-z0-9._-]{0,63}$.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 34 lines · 0 tokens per session scan A fe1600ebecdb

Subscribe to this mod's changes

new-project is a command published in the GitHub repository kouroshez/coding-os (6 stars, last pushed 3d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 799 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.