Support Assistant Workspace

@zack/support-assistant-workspace

Multi-agent workspace starter that combines one published agent root with local generated agent manifests.

Use case: internal-supportpython-sdkpython
Bootstrap
agentpm new @zack/support-assistant-workspace@0.1.0 my-project
Next steps
cp .env.example .env.local
Weekly starts
1
0%
Last publish
Today
v0.1.0
agent.json
{
  "name": "support-assistant-workspace",
  "version": "0.1.0",
  "description": "Multi-agent workspace starter that combines one published agent root with local generated agent manifests.",
  "template": {
    "stack": [
      "python"
    ],
    "use_case": "internal-support",
    "variables": [
      {
        "name": "project_name",
        "default": "support-assistant-workspace",
        "required": true,
        "description": "Generated project name. Generation-time only; do not use for API keys, tokens, passwords, or runtime secrets."
      },
      {
        "name": "workspace_label",
        "required": true,
        "description": "Human-readable label used in the generated README and code comments."
      },
      {
        "name": "sample_thread_path",
        "default": "sample-inputs/support-thread.md",
        "required": true,
        "description": "Default local support thread used in the generated workspace example."
      }
    ],
    "files_root": "template",
    "entrypoints": [
      {
        "label": "Create local env file",
        "command": "cp .env.example .env.local"
      },
      {
        "label": "Install Python app dependencies",
        "command": "uv sync"
      },
      {
        "label": "Run the workspace example",
        "command": "uv run python app/main.py"
      },
      {
        "label": "Review workspace topology",
        "command": "cat agentpm.workspace.json"
      }
    ],
    "dependencies": {
      "tools": [
        {
          "name": "@zack/summarize-text",
          "version": "0.1.8"
        }
      ],
      "agents": [
        {
          "name": "@zack/ops-console",
          "version": "0.1.0"
        }
      ]
    },
    "display_name": "Support Assistant Workspace",
    "execution_surfaces": [
      "python-sdk"
    ]
  },
  "readme": "README.md",
  "license": {
    "spdx": "MIT"
  }
}
Template metadata
Use case
internal-support
Execution surfaces
python-sdk
Stack
python
Entrypoints
Create local env file
cp .env.example .env.local
Install Python app dependencies
uv sync
Run the workspace example
uv run python app/main.py
Review workspace topology
cat agentpm.workspace.json