@mortar-ai/skill 0.7.0 → 0.7.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/SKILL.md +5 -0
- package/manifest.json +3 -3
- package/package.json +1 -1
- package/references/schema-migrations.md +1 -1
package/SKILL.md
CHANGED
|
@@ -168,6 +168,11 @@ for example:
|
|
|
168
168
|
sed -n '1,240p' /tmp/skills/mortar/references/storage.md
|
|
169
169
|
```
|
|
170
170
|
|
|
171
|
+
Materialized `/tmp/skills/...` references are outside the project tree: read
|
|
172
|
+
them through `bash`, not `read_file` or `grep_search`. The Runner does not
|
|
173
|
+
guarantee `rg`; use `grep` to locate an `operationId` and `sed` for the bounded
|
|
174
|
+
section.
|
|
175
|
+
|
|
171
176
|
## Completion checklist
|
|
172
177
|
|
|
173
178
|
- Live schema was read before schema design.
|
package/manifest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"id": "mortar",
|
|
4
|
-
"version": "0.7.
|
|
5
|
-
"content_sha256": "sha256:
|
|
4
|
+
"version": "0.7.1",
|
|
5
|
+
"content_sha256": "sha256:515ca910b01c49b20a3838096bf4b1119be8c07879ab8eda220314d373dfeadd",
|
|
6
6
|
"source_repo": "liamxujia/appunvs",
|
|
7
7
|
"source_path": "mortar/skill",
|
|
8
8
|
"distributions": [
|
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
],
|
|
12
12
|
"npm": {
|
|
13
13
|
"package": "@mortar-ai/skill",
|
|
14
|
-
"version": "0.7.
|
|
14
|
+
"version": "0.7.1"
|
|
15
15
|
}
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mortar-ai/skill",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Agent skill package for building Fabric applications on Mortar (BaaS), with compact core guidance and on-demand references.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": ["SKILL.md", "references", "manifest.json", "index.js", "README.md"],
|
|
@@ -17,7 +17,7 @@ never edit them to request a schema change.
|
|
|
17
17
|
Search the OpenAPI by stable operation ID, for example:
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
|
|
20
|
+
grep -nE 'operationId: (insertDatabaseRows|listDatabaseRows)' \
|
|
21
21
|
/tmp/skills/mortar/references/openapi.yaml
|
|
22
22
|
```
|
|
23
23
|
|