fluxloop projects
Manage FluxLoop projects.
Synopsis
fluxloop projects [command] [options]
Description
The projects command manages FluxLoop projects. Projects are the top-level organizational unit that contains scenarios, test runs, and results.
Commands
fluxloop projects list
List all available projects.
Usage:
fluxloop projects list [options]
Options:
--org <name>: Filter by organization--json: Output in JSON format--limit <n>: Limit number of results (default: 100)
Examples:
# List all projects
fluxloop projects list
# List projects in specific organization
fluxloop projects list --org "Acme Inc"
# Get projects in JSON format
fluxloop projects list --json
Output:
Projects
┌──────────────────────────────────────────────────────────────────┐
│ customer-support-bot │
│ Customer support agent for e-commerce │
│ Organization: Acme Inc │
│ Scenarios: 12 | Last run: 2 hours ago │
└──────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ sales-assistant │
│ AI sales assistant for lead qualification │
│ Organization: Acme Inc │
│ Scenarios: 8 | Last run: 1 day ago │
└──────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────┐
│ analytics-agent │
│ Data analysis and reporting agent │
│ Organization: Personal │
│ Scenarios: 5 | Last run: 3 days ago │
└──────────────────────────────────────────────────────────────────┘
Total: 3 projects
fluxloop projects create
Create a new project.
Usage:
fluxloop projects create [options]
Options:
--name <name>: Project name (required)--description <desc>: Project description--org <name>: Organization to create project in--tags <tags>: Comma-separated list of tags--connect: Connect this local directory to the new project
Examples:
# Interactive project creation
fluxloop projects create
# Create project with name and description
fluxloop projects create \
--name "email-assistant" \
--description "AI email assistant for customer support"
# Create and connect to local directory
fluxloop projects create \
--name "chatbot" \
--description "Customer chatbot" \
--connect
Interactive Flow:
$ fluxloop projects create
Create New Project
Project name: email-assistant
Description: AI email assistant for customer support
Organization: Acme Inc
Tags (comma-separated): email, support, customer
✅ Project created successfully!
Project ID: proj_abc123
Name: email-assistant
URL: https://app.fluxloop.ai/projects/email-assistant
Would you like to connect this directory to the project? (y/n): y
✅ Connected to project: email-assistant
Configuration saved to .fluxloop/config.yaml