@starlein/paperclip-plugin-company-wizard 0.3.15 → 0.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +5 -1
- package/README.md +18 -7
- package/dist/manifest.js +2 -2
- package/dist/manifest.js.map +1 -1
- package/dist/ui/index.css +1 -1
- package/dist/ui/index.css.map +2 -2
- package/dist/ui/index.js +11 -3
- package/dist/ui/index.js.map +2 -2
- package/dist/worker.js +27 -4
- package/dist/worker.js.map +2 -2
- package/package.json +5 -2
- package/templates/ai-wizard/interview-system.md +1 -1
- package/templates/ai-wizard/single-shot-system.md +1 -1
- package/templates/modules/architecture-plan/docs/architecture-template.md +1 -1
- package/templates/modules/architecture-plan/docs/design-system-template.md +1 -1
- package/templates/modules/brand-identity/docs/brand-identity-template.md +1 -1
- package/templates/modules/github-repo/README.md +1 -1
- package/templates/modules/github-repo/module.meta.json +2 -2
- package/templates/modules/market-analysis/docs/market-analysis-template.md +1 -1
- package/templates/modules/tech-stack/docs/tech-stack-template.md +1 -1
- package/templates/modules/user-testing/docs/user-testing-template.md +1 -1
- package/templates/modules/vision-workshop/docs/vision-template.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@starlein/paperclip-plugin-company-wizard",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AI-powered wizard to bootstrap paperclip agent companies from composable templates (for latest paperclip version)",
|
|
6
6
|
"repository": "https://github.com/starlein/paperclip-plugin-company-wizard",
|
|
@@ -40,7 +40,10 @@
|
|
|
40
40
|
"plugin",
|
|
41
41
|
"workspace"
|
|
42
42
|
],
|
|
43
|
-
"author": "
|
|
43
|
+
"author": "Sascha Pietrowski <sp@speednetwork.de>",
|
|
44
|
+
"contributors": [
|
|
45
|
+
"Yesterday AI (original @yesterday-ai/paperclip-plugin-company-wizard — template system, assembly logic, API client)"
|
|
46
|
+
],
|
|
44
47
|
"license": "MIT",
|
|
45
48
|
"dependencies": {
|
|
46
49
|
"class-variance-authority": "^0.7.1",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
You are the
|
|
1
|
+
You are the Company Wizard — an expert at assembling AI agent teams. You're enthusiastic but concise. Company Wizard bootstraps AI-agent company workspaces from composable templates.
|
|
2
2
|
|
|
3
3
|
You are conducting a guided interview to understand what company to set up.
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
You are the
|
|
1
|
+
You are the Company Wizard. Company Wizard bootstraps AI-agent company workspaces from composable templates.
|
|
2
2
|
|
|
3
3
|
Given a natural language description of what the user wants to build, you select the best configuration.
|
|
4
4
|
|
|
@@ -40,4 +40,4 @@ _Communication style, vocabulary preferences, and brand personality traits._
|
|
|
40
40
|
_Examples of on-brand vs. off-brand language._
|
|
41
41
|
|
|
42
42
|
---
|
|
43
|
-
_Generated by
|
|
43
|
+
_Generated by Company Wizard. Fill in during brand-identity task._
|
|
@@ -6,7 +6,7 @@ Enables the Engineer to work in a GitHub repository.
|
|
|
6
6
|
|
|
7
7
|
- **Shared docs**: `docs/git-workflow.md` — commit conventions, branch rules
|
|
8
8
|
- **Engineer skill**: Git workflow instructions for working in a repo
|
|
9
|
-
- **Foundation issue**: `
|
|
9
|
+
- **Foundation issue**: `Prepare GitHub repository` is marked critical and ordered before normal implementation work. The assignee verifies an already-provisioned git workspace/remote or creates and pushes the repository before closing it.
|
|
10
10
|
|
|
11
11
|
## Variants
|
|
12
12
|
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"capabilities": [],
|
|
5
5
|
"issues": [
|
|
6
6
|
{
|
|
7
|
-
"title": "
|
|
7
|
+
"title": "Prepare GitHub repository",
|
|
8
8
|
"assignTo": "engineer",
|
|
9
9
|
"priority": "critical",
|
|
10
10
|
"bootstrapPhase": "foundation",
|
|
11
11
|
"labels": ["chore"],
|
|
12
|
-
"description": "Foundation setup: handle this before normal implementation issues.
|
|
12
|
+
"description": "Foundation setup: handle this before normal implementation issues. For a fresh repository, create the GitHub repository, initialize local workspace with a README or bootstrap commit, add origin, push main, and record the repository URL. For an existing repository, verify the workspace has a reachable remote, current default branch, and starter commit state; escalate to CEO if repo setup is missing instead of silently closing the issue. Branch protection is tracked separately by the pr-review module when that workflow is enabled."
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
}
|