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.1 my-projectNext steps
cp .env.example .env.localWeekly starts
0
0%
Last publish
1d ago
v0.1.1
agent.json
{
"name": "support-assistant-workspace",
"version": "0.1.1",
"description": "Multi-agent workspace starter that combines one published agent root with local generated agent manifests.",
"template": {
"display_name": "Support Assistant Workspace",
"use_case": "internal-support",
"execution_surfaces": [
"python-sdk"
],
"stack": [
"python"
],
"files_root": "template",
"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."
}
],
"dependencies": {
"tools": [
{
"name": "@zack/summarize-text",
"version": "0.1.8"
}
],
"agents": [
{
"name": "@zack/ops-console",
"version": "0.1.1"
}
]
},
"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"
}
]
},
"readme": "README.md",
"license": {
"spdx": "MIT"
}
}Template metadata
Use case
internal-support
Execution surfaces
python-sdk
Stack
python
Included packages
Agents
Skills
This template does not declare any skill package dependencies.
Entrypoints
Create local env file
cp .env.example .env.localInstall Python app dependencies
uv syncRun the workspace example
uv run python app/main.pyReview workspace topology
cat agentpm.workspace.json