@iinm/plain-agent 1.3.1 → 1.3.2
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 +17 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -105,6 +105,7 @@ Create the configuration.
|
|
|
105
105
|
"askURL": {
|
|
106
106
|
"provider": "gemini",
|
|
107
107
|
"apiKey": "FIXME"
|
|
108
|
+
"model": "gemini-3-flash-preview"
|
|
108
109
|
// Optional
|
|
109
110
|
// "baseURL": "<proxy_url>"
|
|
110
111
|
|
|
@@ -534,7 +535,7 @@ Example:
|
|
|
534
535
|
{
|
|
535
536
|
"source": "https://github.com/anthropics/skills",
|
|
536
537
|
"plugins": [
|
|
537
|
-
{ "name": "
|
|
538
|
+
{ "name": "document-skills", "path": "", "only": "xlsx|docx|pptx|pdf" }
|
|
538
539
|
]
|
|
539
540
|
}
|
|
540
541
|
]
|
|
@@ -561,6 +562,21 @@ npx npm-check-updates -t minor -c 3
|
|
|
561
562
|
npx npm-check-updates -t minor -c 3 -u
|
|
562
563
|
```
|
|
563
564
|
|
|
565
|
+
## Release
|
|
566
|
+
|
|
567
|
+
```sh
|
|
568
|
+
npm run check
|
|
569
|
+
|
|
570
|
+
git commit -m "<message>"
|
|
571
|
+
|
|
572
|
+
npm version <major|minor|patch>
|
|
573
|
+
git push --follow-tags
|
|
574
|
+
|
|
575
|
+
gh release create $(git describe --tags) --generate-notes
|
|
576
|
+
|
|
577
|
+
npm publish --access public
|
|
578
|
+
```
|
|
579
|
+
|
|
564
580
|
## Appendix: Creating Least-Privilege Users for Cloud Providers
|
|
565
581
|
|
|
566
582
|
<details>
|