graphile-llm 0.11.1 → 0.11.3
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 +11 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -186,6 +186,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
186
186
|
|
|
187
187
|
* [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.
|
|
188
188
|
|
|
189
|
+
Install skills for AI coding agents:
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
# All platform skills (security, blueprints, codegen, billing, etc.)
|
|
193
|
+
npx skills add constructive-io/constructive-skills
|
|
194
|
+
|
|
195
|
+
# Individual repo skills (pgpm, testing, CLI, search, etc.)
|
|
196
|
+
npx skills add https://github.com/constructive-io/constructive --skill pgpm
|
|
197
|
+
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
|
|
198
|
+
```
|
|
199
|
+
|
|
189
200
|
## Credits
|
|
190
201
|
|
|
191
202
|
**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-llm",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "LLM integration plugin for PostGraphile v5 — server-side text-to-vector embedding and text companion fields for pgvector columns",
|
|
5
5
|
"author": "Constructive <developers@constructive.io>",
|
|
6
6
|
"homepage": "https://github.com/constructive-io/constructive",
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^22.19.11",
|
|
57
|
-
"graphile-connection-filter": "^1.12.
|
|
58
|
-
"graphile-search": "^1.15.
|
|
59
|
-
"graphile-test": "^4.17.
|
|
57
|
+
"graphile-connection-filter": "^1.12.3",
|
|
58
|
+
"graphile-search": "^1.15.3",
|
|
59
|
+
"graphile-test": "^4.17.3",
|
|
60
60
|
"makage": "^0.3.0",
|
|
61
|
-
"pgsql-test": "^4.16.
|
|
61
|
+
"pgsql-test": "^4.16.3"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"postgraphile",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"ollama",
|
|
74
74
|
"openai"
|
|
75
75
|
],
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "30fdaaacfc61f86b3e466f0c4c3768550fd77a55"
|
|
77
77
|
}
|