allagents 0.15.0 → 0.16.1
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/README.md +3 -3
- package/dist/index.js +1520 -175
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -147,12 +147,12 @@ vscode:
|
|
|
147
147
|
|
|
148
148
|
#### Template file
|
|
149
149
|
|
|
150
|
-
Create `.allagents/
|
|
150
|
+
Create `.allagents/template.code-workspace` for VSCode-specific settings, launch configurations, extensions, and extra folders. The template supports `{path:../...}` placeholders that resolve to absolute paths using repository paths from workspace.yaml.
|
|
151
151
|
|
|
152
152
|
```json
|
|
153
153
|
{
|
|
154
154
|
"folders": [
|
|
155
|
-
{ "path": "{
|
|
155
|
+
{ "path": "{path:../Shared}", "name": "SharedLib" }
|
|
156
156
|
],
|
|
157
157
|
"settings": {
|
|
158
158
|
"cSpell.words": ["myterm"],
|
|
@@ -164,7 +164,7 @@ Create `.allagents/vscode-template.json` for VSCode-specific settings, launch co
|
|
|
164
164
|
{
|
|
165
165
|
"type": "node",
|
|
166
166
|
"name": "dev",
|
|
167
|
-
"cwd": "{
|
|
167
|
+
"cwd": "{path:../myapp}/src",
|
|
168
168
|
"runtimeExecutable": "npm",
|
|
169
169
|
"runtimeArgs": ["run", "dev"]
|
|
170
170
|
}
|