@iinm/plain-agent 1.3.1 → 1.3.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 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": "anthropics", "path": "", "only": "pdf|pptx" }
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>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iinm/plain-agent",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "A lightweight CLI-based coding agent",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/main.mjs CHANGED
@@ -60,7 +60,7 @@ if (cliArgs.subcommand.type === "install-claude-code-plugins") {
60
60
  (async () => {
61
61
  const startTime = new Date();
62
62
  const sessionId = [
63
- startTime.toISOString().slice(0, 10),
63
+ `${startTime.getFullYear()}-${`0${startTime.getMonth() + 1}`.slice(-2)}-${`0${startTime.getDate()}`.slice(-2)}`,
64
64
  `0${startTime.getHours()}`.slice(-2) +
65
65
  `0${startTime.getMinutes()}`.slice(-2),
66
66
  ].join("-");