Creating Apps
You can create a Foundry app from the Falcon console’s App Builder or from the Foundry CLI. Both methods produce the same app structure — the difference is in the development experience.
Create an app in the Falcon console
Section titled “Create an app in the Falcon console”- Go to Foundry > App manager.
- Click Create app.
- Choose one of the following:
- Start from scratch — Create a blank app and add capabilities manually.
- Clone an existing app — Copy an installed app’s configuration as a starting point.
- Use a template — Select a pre-built template from the Content Library.
- Enter a Name and Description for your app.
- Click Create.
The App Builder opens with your new app’s capability summary.
Create an app with the Foundry CLI
Section titled “Create an app with the Foundry CLI”foundry apps createYou will be prompted for the app name and description. The CLI creates a project directory with:
my-app/├── manifest.yml # App manifest (capabilities, metadata)├── functions/ # Serverless function code├── ui/ # UI extension source└── ...Non-interactive creation
Section titled “Non-interactive creation”You can also pass the name and description as flags:
foundry apps create --name "My App" --description "Does useful things"Clone an existing app
Section titled “Clone an existing app”Cloning creates a copy of an installed app’s configuration that you can modify.
Clone in the Falcon console
Section titled “Clone in the Falcon console”- Go to Foundry > App catalog.
- Find the app you want to clone.
- Click Clone.
- Modify the name and description.
- Click Create.
Clone with the CLI
Section titled “Clone with the CLI”foundry apps create --clone <app-id>Or interactively:
foundry apps createSelect Clone an existing app when prompted.
App templates
Section titled “App templates”App templates are pre-built apps in the Content Library. Unlike CrowdStrike Store apps, templates are fully editable — you can inspect and modify their source code, configuration, and capabilities.
Templates are available in the Falcon console under Foundry > Content Library. You can deploy a template directly or clone it as a starting point.
For a walkthrough, see Deploy an App Template.