@soleri/forge 5.14.2 → 5.14.4
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/dist/skills/skills/agent-dev.md +122 -0
- package/dist/skills/skills/agent-persona.md +66 -0
- package/dist/skills/skills/brain-debrief.md +214 -0
- package/dist/skills/skills/brainstorming.md +180 -0
- package/dist/skills/skills/code-patrol.md +178 -0
- package/dist/skills/skills/context-resume.md +146 -0
- package/dist/skills/skills/deliver-and-ship.md +123 -0
- package/dist/skills/skills/env-setup.md +151 -0
- package/dist/skills/skills/executing-plans.md +216 -0
- package/dist/skills/skills/fix-and-learn.md +167 -0
- package/dist/skills/skills/health-check.md +231 -0
- package/dist/skills/skills/knowledge-harvest.md +185 -0
- package/dist/skills/skills/onboard-me.md +198 -0
- package/dist/skills/skills/retrospective.md +205 -0
- package/dist/skills/skills/second-opinion.md +149 -0
- package/dist/skills/skills/systematic-debugging.md +241 -0
- package/dist/skills/skills/test-driven-development.md +281 -0
- package/dist/skills/skills/vault-capture.md +170 -0
- package/dist/skills/skills/vault-curate.md +107 -0
- package/dist/skills/skills/vault-navigator.md +140 -0
- package/dist/skills/skills/verification-before-completion.md +182 -0
- package/dist/skills/skills/writing-plans.md +215 -0
- package/dist/templates/skills.js +4 -0
- package/dist/templates/skills.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/scaffolder.test.ts +6 -1
- package/src/skills/agent-dev.md +122 -0
- package/src/skills/agent-persona.md +66 -0
- package/src/skills/deliver-and-ship.md +123 -0
- package/src/skills/env-setup.md +151 -0
- package/src/skills/vault-curate.md +107 -0
- package/src/templates/skills.ts +4 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: env-setup
|
|
3
|
+
description: >
|
|
4
|
+
Use when a developer needs to set up, fix, or restore a local development environment.
|
|
5
|
+
Triggers on post-clone setup, project onboarding, first-time running a repo, pulled changes
|
|
6
|
+
that broke the build, missing or misconfigured dependencies, MODULE_NOT_FOUND or Cannot find
|
|
7
|
+
module errors, gyp ERR or native module build failures, missing .env files or unknown required
|
|
8
|
+
environment variables, database setup, Docker compose issues, or connection refused during
|
|
9
|
+
local dev. Covers Node.js, Python, Rust, Go, Ruby, PHP, and Docker-based projects.
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Environment Setup
|
|
13
|
+
|
|
14
|
+
Detect what a project needs, diagnose what's missing, and produce an actionable setup checklist.
|
|
15
|
+
|
|
16
|
+
## Overview
|
|
17
|
+
|
|
18
|
+
Scan the project root for configuration files, detect the tech stack and dependencies, identify gaps between what's required and what's present, then generate ordered setup steps. Offer to execute each step.
|
|
19
|
+
|
|
20
|
+
## When to Use
|
|
21
|
+
|
|
22
|
+
- Just cloned a repo and need to get it running
|
|
23
|
+
- Getting errors after pulling changes (missing deps, env vars, DB migrations)
|
|
24
|
+
- Onboarding to an unfamiliar project
|
|
25
|
+
- Setting up a project on a new machine
|
|
26
|
+
- Docker/container environment not starting
|
|
27
|
+
- Missing `.env` file or environment variables
|
|
28
|
+
|
|
29
|
+
## Detection Phase
|
|
30
|
+
|
|
31
|
+
Scan the project root and identify:
|
|
32
|
+
|
|
33
|
+
### Package Managers & Dependencies
|
|
34
|
+
|
|
35
|
+
| File | Stack | Install Command |
|
|
36
|
+
|------|-------|-----------------|
|
|
37
|
+
| `package.json` | Node.js | `npm install` / `yarn` / `pnpm install` (check for lockfile) |
|
|
38
|
+
| `requirements.txt` | Python | `pip install -r requirements.txt` |
|
|
39
|
+
| `pyproject.toml` | Python | `pip install -e .` or `poetry install` or `uv sync` |
|
|
40
|
+
| `Pipfile` | Python | `pipenv install` |
|
|
41
|
+
| `Cargo.toml` | Rust | `cargo build` |
|
|
42
|
+
| `go.mod` | Go | `go mod download` |
|
|
43
|
+
| `Gemfile` | Ruby | `bundle install` |
|
|
44
|
+
| `composer.json` | PHP | `composer install` |
|
|
45
|
+
|
|
46
|
+
**Lockfile priority:** If a lockfile exists (`package-lock.json`, `yarn.lock`, `pnpm-lock.yaml`, `Pipfile.lock`, `poetry.lock`), use the matching package manager. Don't mix.
|
|
47
|
+
|
|
48
|
+
### Environment Variables
|
|
49
|
+
|
|
50
|
+
1. Check for `.env.example`, `.env.sample`, `.env.template`
|
|
51
|
+
2. Check for existing `.env` — if missing, copy from template
|
|
52
|
+
3. Parse template for required variables (lines without defaults or with placeholder values)
|
|
53
|
+
4. Flag variables that need real values (API keys, secrets, database URLs)
|
|
54
|
+
5. **If no template exists:** grep source for `process.env.`, `os.environ`, `env::var`, `os.Getenv` to discover env vars the project actually uses.
|
|
55
|
+
|
|
56
|
+
### Native Dependencies
|
|
57
|
+
|
|
58
|
+
| Indicator | What It Means |
|
|
59
|
+
|-----------|--------------|
|
|
60
|
+
| `better-sqlite3`, `sqlite3` in deps | Needs C++ compiler |
|
|
61
|
+
| `node-gyp` in deps or scripts | Needs Python 3 + C++ toolchain |
|
|
62
|
+
| `sharp` in deps | Needs `libvips` |
|
|
63
|
+
| `Cargo.toml` with `[build-dependencies]` | Needs Rust toolchain for build scripts |
|
|
64
|
+
| `setup.py` with `ext_modules` | Needs C compiler for Python extensions |
|
|
65
|
+
|
|
66
|
+
### Databases
|
|
67
|
+
|
|
68
|
+
| File/Config | Database | Setup Needed |
|
|
69
|
+
|-------------|----------|-------------|
|
|
70
|
+
| `docker-compose.yml` with postgres/mysql | PostgreSQL/MySQL | Container + migrations |
|
|
71
|
+
| `prisma/schema.prisma` | Prisma-managed | `npx prisma migrate dev` |
|
|
72
|
+
| `drizzle.config.*` | Drizzle-managed | `npx drizzle-kit push` |
|
|
73
|
+
| `alembic.ini` | SQLAlchemy | `alembic upgrade head` |
|
|
74
|
+
| `config/database.yml` | Rails | `rails db:create db:migrate` |
|
|
75
|
+
|
|
76
|
+
### Infrastructure
|
|
77
|
+
|
|
78
|
+
| File | What It Means |
|
|
79
|
+
|------|--------------|
|
|
80
|
+
| `docker-compose.yml` | Services to start with `docker compose up` |
|
|
81
|
+
| `Dockerfile` | Can build container locally |
|
|
82
|
+
| `Makefile` | Check for `setup`, `install`, `dev` targets |
|
|
83
|
+
| `.tool-versions` / `.node-version` / `.nvmrc` | Required runtime version |
|
|
84
|
+
| `turbo.json` / `nx.json` / `lerna.json` | Monorepo setup |
|
|
85
|
+
|
|
86
|
+
### IDE & Tool Integration
|
|
87
|
+
|
|
88
|
+
| File | Integration |
|
|
89
|
+
|------|------------|
|
|
90
|
+
| `.vscode/` | VS Code settings, extensions |
|
|
91
|
+
| `.mcp.json` / `mcp.json` | MCP server config |
|
|
92
|
+
| `.editorconfig` | Cross-editor formatting |
|
|
93
|
+
|
|
94
|
+
## Diagnosis Phase
|
|
95
|
+
|
|
96
|
+
After detection, check what's present vs needed:
|
|
97
|
+
|
|
98
|
+
1. **Runtime version** — does installed version match version files?
|
|
99
|
+
2. **Dependencies installed?** — does `node_modules/`, `venv/`, `vendor/` exist?
|
|
100
|
+
3. **Native build tools?** — are compilers available?
|
|
101
|
+
4. **Env file present?** — does `.env` exist when a template does?
|
|
102
|
+
5. **Database reachable?** — can the configured DB URL connect?
|
|
103
|
+
6. **Docker running?** — is Docker daemon running if needed?
|
|
104
|
+
7. **Build artifacts** — does the project need an initial build step?
|
|
105
|
+
|
|
106
|
+
## Checklist Generation
|
|
107
|
+
|
|
108
|
+
Produce steps in dependency order:
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
## Setup Checklist
|
|
112
|
+
|
|
113
|
+
1. [ ] Install runtime (Node 20.x via nvm)
|
|
114
|
+
2. [ ] Install dependencies (pnpm install)
|
|
115
|
+
3. [ ] Copy environment file (cp .env.example .env)
|
|
116
|
+
4. [ ] Fill in required env vars: DATABASE_URL, API_KEY
|
|
117
|
+
5. [ ] Start Docker services (docker compose up -d)
|
|
118
|
+
6. [ ] Run database migrations (npx prisma migrate dev)
|
|
119
|
+
7. [ ] Build the project (pnpm build)
|
|
120
|
+
8. [ ] Start dev server (pnpm dev)
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Order matters:** runtime → deps → env → infrastructure → migrations → build → run.
|
|
124
|
+
|
|
125
|
+
After presenting the checklist, offer: "Want me to run these steps for you?"
|
|
126
|
+
|
|
127
|
+
## Execution Phase
|
|
128
|
+
|
|
129
|
+
If the user says yes, execute steps sequentially. Stop and ask if:
|
|
130
|
+
|
|
131
|
+
- A step fails
|
|
132
|
+
- A step requires manual input (API keys, passwords)
|
|
133
|
+
- A step would modify system-level config (global installs, PATH changes)
|
|
134
|
+
|
|
135
|
+
## Monorepo Handling
|
|
136
|
+
|
|
137
|
+
If monorepo detected (turbo.json, nx.json, pnpm-workspace.yaml):
|
|
138
|
+
|
|
139
|
+
1. Install root dependencies first
|
|
140
|
+
2. Ask which package/app the user wants to work on
|
|
141
|
+
3. Check for package-specific setup
|
|
142
|
+
4. Run package-specific setup after root
|
|
143
|
+
|
|
144
|
+
## Common Mistakes
|
|
145
|
+
|
|
146
|
+
- **Wrong package manager** — using `npm install` when `yarn.lock` exists. Always check lockfiles first.
|
|
147
|
+
- **Skipping env file** — project crashes on first API call. Always check for templates.
|
|
148
|
+
- **Missing native build tools** — `npm install` fails with gyp errors. Check before installing.
|
|
149
|
+
- **Missing runtime version** — subtle bugs from wrong Node/Python version.
|
|
150
|
+
- **Docker not running** — cryptic "connection refused" errors.
|
|
151
|
+
- **Stale dependencies** — after `git pull`, always re-install if lockfile changed.
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vault-curate
|
|
3
|
+
description: >
|
|
4
|
+
Use when the user says "clean vault", "deduplicate", "groom knowledge",
|
|
5
|
+
"consolidate vault", "vault maintenance", "find duplicates", "merge patterns",
|
|
6
|
+
"check contradictions", "vault health", or wants to maintain, clean, reorganize,
|
|
7
|
+
or improve the quality of the agent's knowledge base.
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Vault Curate — Knowledge Maintenance
|
|
11
|
+
|
|
12
|
+
Maintain vault quality through deduplication, grooming, contradiction detection, and consolidation. A well-curated vault produces better search results and brain recommendations.
|
|
13
|
+
|
|
14
|
+
## When to Use
|
|
15
|
+
|
|
16
|
+
Periodically (weekly or after heavy capture sessions), when search quality degrades, when vault health shows warnings, or when the user explicitly requests maintenance.
|
|
17
|
+
|
|
18
|
+
## Orchestration Sequence
|
|
19
|
+
|
|
20
|
+
### Step 1: Health Assessment
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
YOUR_AGENT_core op:knowledge_health
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
YOUR_AGENT_core op:get_vault_analytics
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Present the health summary to the user before proceeding: total entries, quality scores, staleness, coverage gaps.
|
|
31
|
+
|
|
32
|
+
### Step 2: Detect Duplicates
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
YOUR_AGENT_core op:curator_detect_duplicates
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
This finds entries with overlapping titles, descriptions, or content. Review the duplicate pairs — some may be intentional (different contexts) while others are true duplicates.
|
|
39
|
+
|
|
40
|
+
For true duplicates:
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
YOUR_AGENT_core op:merge_patterns
|
|
44
|
+
params: { patternIds: ["<id1>", "<id2>"] }
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Preserve the best content from each.
|
|
48
|
+
|
|
49
|
+
### Step 3: Find Contradictions
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
YOUR_AGENT_core op:curator_contradictions
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Contradictions erode trust in vault search results. For each contradiction: decide which entry is correct (check dates, context, evidence), then archive or update the incorrect one.
|
|
56
|
+
|
|
57
|
+
### Step 4: Groom Entries
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
YOUR_AGENT_core op:curator_groom_all
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Runs tag enrichment and metadata cleanup across all entries. This improves searchability and categorization.
|
|
64
|
+
|
|
65
|
+
For targeted grooming of specific entries:
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
YOUR_AGENT_core op:curator_groom
|
|
69
|
+
params: { entryIds: ["<id>"], tags: ["<tag>"] }
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Step 5: GPT Enrichment (Optional)
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
YOUR_AGENT_core op:curator_gpt_enrich
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Adds AI-generated metadata to entries that lack descriptions, examples, or context. Fills in gaps without changing the core content.
|
|
79
|
+
|
|
80
|
+
### Step 6: Full Consolidation
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
YOUR_AGENT_core op:curator_consolidate
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Runs the complete pipeline: dedup + archive stale entries + resolve contradictions. This is the heavy-duty cleanup.
|
|
87
|
+
|
|
88
|
+
### Step 7: Knowledge Reorganization
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
YOUR_AGENT_core op:knowledge_reorganize
|
|
92
|
+
params: { mode: "preview" }
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Preview first, then run again with `mode: "apply"` if the preview looks good.
|
|
96
|
+
|
|
97
|
+
### Step 8: Verify Results
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
YOUR_AGENT_core op:knowledge_health
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Compare with Step 1 metrics. Vault health should improve: fewer duplicates, no contradictions, better coverage.
|
|
104
|
+
|
|
105
|
+
## Exit Criteria
|
|
106
|
+
|
|
107
|
+
Curation is complete when: duplicates merged, contradictions resolved, entries groomed, and health metrics improved compared to Step 1 baseline.
|
package/src/templates/skills.ts
CHANGED
|
@@ -8,10 +8,13 @@ const SKILLS_DIR = join(__dirname, '..', 'skills');
|
|
|
8
8
|
|
|
9
9
|
/** Skills that use YOUR_AGENT_core placeholder and need agent-specific substitution. */
|
|
10
10
|
const AGENT_SPECIFIC_SKILLS = new Set([
|
|
11
|
+
'agent-dev',
|
|
12
|
+
'agent-persona',
|
|
11
13
|
'brain-debrief',
|
|
12
14
|
'brainstorming',
|
|
13
15
|
'code-patrol',
|
|
14
16
|
'context-resume',
|
|
17
|
+
'deliver-and-ship',
|
|
15
18
|
'executing-plans',
|
|
16
19
|
'fix-and-learn',
|
|
17
20
|
'health-check',
|
|
@@ -22,6 +25,7 @@ const AGENT_SPECIFIC_SKILLS = new Set([
|
|
|
22
25
|
'systematic-debugging',
|
|
23
26
|
'test-driven-development',
|
|
24
27
|
'vault-capture',
|
|
28
|
+
'vault-curate',
|
|
25
29
|
'vault-navigator',
|
|
26
30
|
'verification-before-completion',
|
|
27
31
|
'writing-plans',
|