pneuma-skills 2.5.2 → 2.5.4

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.
Files changed (2) hide show
  1. package/bin/pneuma.ts +2 -0
  2. package/package.json +1 -1
package/bin/pneuma.ts CHANGED
@@ -225,6 +225,8 @@ function checkBunVersion() {
225
225
 
226
226
  async function checkForUpdate(currentVersion: string) {
227
227
  if (process.env.PNEUMA_SKIP_UPDATE) return;
228
+ // Skip interactive update prompt in non-interactive mode (e.g. Electron desktop)
229
+ if (process.argv.includes("--no-prompt")) return;
228
230
  try {
229
231
  const controller = new AbortController();
230
232
  const timeout = setTimeout(() => controller.abort(), 3000);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pneuma-skills",
3
- "version": "2.5.2",
3
+ "version": "2.5.4",
4
4
  "type": "module",
5
5
  "description": "Co-creation infrastructure for humans and code agents — visual environment, skills, continuous learning, and distribution.",
6
6
  "license": "MIT",