new

Automates scaffolding and initial configuration of Autumn web framework projects via CLI flags and guided checklists.

4|1|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/madmax983/autumn --skill new-madmax983
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: new
Source: https://github.com/madmax983/autumn/tree/main/skills/new
Command: npx skills add https://github.com/madmax983/autumn --skill new-madmax983

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manually setting up a new Autumn web framework project requires configuring dependencies, build pipelines, and boilerplate code, which is time-consuming and error-prone for new users.

Core Features & Use Cases

  • Guided Project Scaffolding: Runs the autumn new CLI command with optional flags like --with-i18n for internationalization support and --with-seed for database seeding stubs.
  • Automated Dev Setup: Executes autumn setup to download required development dependencies such as the Tailwind CSS binary.
  • First-Run Guidance: Provides a structured checklist to configure the database, run initial migrations, start the dev server, and prepare for production deployment.
  • Use Case: A Rust developer starting a new web project can use this skill to get a fully configured, runnable Autumn application in minutes without manual setup work.

Quick Start

Use the new skill to create a new Autumn web application named 'my-ecommerce-app' with internationalization support and a database seeding stub.

Frequently Asked Questions about new

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

FAQPage Schema
How do I scaffold a new Autumn web framework project in Rust?

Scaffolding a new Autumn web framework project is automated by executing the `autumn new` CLI command, which generates a pre-configured project structure to eliminate manual setup overhead for Rust developers.

What's the best way to set up Tailwind CSS for an Autumn Rust application?

Setting up Tailwind CSS for an Autumn Rust application is handled automatically by the `autumn setup` command, which downloads the required development dependencies and configures the build pipeline without manual intervention.

Can I add internationalization support when creating an Autumn web app?

Yes, you can add internationalization support when creating an Autumn web app by passing the `--with-i18n` flag to the scaffolding command, which pre-configures the necessary project structures for multilingual functionality.

Does Autumn scaffolding include database seeding stubs for initial development?

Yes, Autumn scaffolding includes database seeding stubs for initial development when the `--with-seed` flag is utilized during project generation, providing pre-configured structures to populate initial database records.

How do I configure a new Autumn project for local development and production?

Configuring a new Autumn project for local development and production is guided by a structured checklist delivered after scaffolding, covering database configuration, initial migrations, dev server startup, and deployment preparation.