@devrev-computer/skills 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/bin/install.mjs +3 -3
  2. package/package.json +2 -2
package/bin/install.mjs CHANGED
@@ -4,7 +4,7 @@ import { readdir, cp, mkdir, stat, readFile, rm } from "node:fs/promises";
4
4
  import { join, dirname } from "node:path";
5
5
  import { fileURLToPath } from "node:url";
6
6
  import { homedir } from "node:os";
7
- import { existsSync } from "node:fs";
7
+ import { existsSync, readFileSync } from "node:fs";
8
8
  import { parseArgs } from "node:util";
9
9
  import * as p from "@clack/prompts";
10
10
  import pc from "picocolors";
@@ -65,11 +65,11 @@ function showLogo() {
65
65
  function getVersion() {
66
66
  try {
67
67
  const pkg = JSON.parse(
68
- require("node:fs").readFileSync(join(__dirname, "..", "package.json"), "utf-8")
68
+ readFileSync(join(__dirname, "..", "package.json"), "utf-8")
69
69
  );
70
70
  return pkg.version;
71
71
  } catch {
72
- return "1.0.0";
72
+ return "2.0.0";
73
73
  }
74
74
  }
75
75
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@devrev-computer/skills",
3
- "version": "2.0.0",
4
- "description": "AI-powered skills for Claude Code — sales intelligence, deal management, workflow automation, and agent debugging, built on DevRev.",
3
+ "version": "2.0.2",
4
+ "description": "Skills for Computer",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "computer-skills": "./bin/install.mjs"