Team Space Management

Manage team template spaces and configuration

Overview

A team space is the management unit for team-shared resources, including template libraries, document repositories, and workflow configurations.


Accessing Team Space

  1. Log in to AgileBuilder Console
  2. Select your team
  3. Go to「Team Space」

Team Space Interface


Template Library Management

Template Categories

Create categories for team templates:

CategoryPurposeExamples
FrontendFrontend project templatesreact-app, vue-admin
BackendBackend project templatesnode-api, python-django
Full-stackFull-stack project templatesnext-fullstack
MobileMobile templatesreact-native

Adding Templates

Method 1: Console

  1. Go to「Template Library」
  2. Click「Add Template」
  3. Select source (Git/upload/marketplace)

Method 2: CLI

agilebuilder template add https://github.com/org/repo.git --team my-team

Document Library Management

Document Organization

We recommend using a tree structure for documents:

docs/
├── Standards/
│   ├── coding-standards/
│   ├── api-standards/
│   └── security-standards/
├── Best-Practices/
│   ├── frontend/
│   └── backend/
└── Architecture/
    ├── system-architecture/
    └── module-design/

Document Versioning

Each document supports versioning:

  1. Document history tracking
  2. Rollback to previous versions
  3. Version comparison

Workflow Configuration

Built-in Workflows

Teams can extend the platform's built-in workflows or create custom ones.

Custom Workflows

Configure in the「AI Workflow」page:

workflows:
  - name: Team Standard Process
    trigger:
      - "Create project"
    steps:
      - action: listTemplates
        team: my-team
      - action: queryDocs
        docs: team-standards
      - action: generateProject

Team Settings

Basic Settings

  • Team name and icon
  • Team description
  • Team URL

Visibility Settings

SettingDescription
Template visibilityPrivate/Team/Public
Document visibilityPrivate/Team/Public
Workflow visibilityPrivate/Team/Public

Review Settings

You can enable template/document review workflows:

  1. Member submits changes
  2. Admin reviews
  3. Published after approval

Statistics and Logs

Usage Statistics

View team resource usage:

  • Template usage count
  • Document access count
  • Workflow execution count

Audit Logs

Record all operations:

  • Who did what and when
  • Useful for auditing and troubleshooting

Next Steps