@oh-my-pi/cli 0.6.3 → 0.8.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 CHANGED
@@ -18,12 +18,15 @@
18
18
 
19
19
  ## Built-ins
20
20
 
21
- | Plugin | Description |
22
- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
23
- | **[@oh-my-pi/subagents](https://npmjs.com/package/@oh-my-pi/subagents)** | Task delegation with specialized sub-agents (task, planner, explore, reviewer) |
24
- | **[@oh-my-pi/exa](https://npmjs.com/package/@oh-my-pi/exa)** | Exa AI-powered web search, company/people lookup, and websets |
25
- | **[@oh-my-pi/user-prompt](https://npmjs.com/package/@oh-my-pi/user-prompt)** | Interactive user prompting for gathering input during execution |
26
- | **[@oh-my-pi/metal-theme](https://npmjs.com/package/@oh-my-pi/metal-theme)** | A metal theme 🤘 |
21
+ | Plugin | Description |
22
+ | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
23
+ | **[@oh-my-pi/subagents](https://npmjs.com/package/@oh-my-pi/subagents)** | Task delegation with specialized sub-agents (task, planner, explore, reviewer) |
24
+ | **[@oh-my-pi/anthropic-websearch](https://npmjs.com/package/@oh-my-pi/anthropic-websearch)** | Claude web search using Anthropic's built-in web_search tool |
25
+ | **[@oh-my-pi/exa](https://npmjs.com/package/@oh-my-pi/exa)** | Exa AI-powered web search, company/people lookup, and websets |
26
+ | **[@oh-my-pi/perplexity](https://npmjs.com/package/@oh-my-pi/perplexity)** | Perplexity AI search with Sonar models (fast and pro) |
27
+ | **[@oh-my-pi/user-prompt](https://npmjs.com/package/@oh-my-pi/user-prompt)** | Interactive user prompting for gathering input during execution |
28
+ | **[@oh-my-pi/init](https://npmjs.com/package/@oh-my-pi/init)** | `/init` command to generate AGENTS.md documentation for a codebase |
29
+ | **[@oh-my-pi/metal-theme](https://npmjs.com/package/@oh-my-pi/metal-theme)** | A metal theme 🤘 |
27
30
 
28
31
  ---
29
32
 
package/dist/cli.js CHANGED
@@ -3506,7 +3506,7 @@ function checkNpmAvailable() {
3506
3506
  stdio: ["pipe", "pipe", "pipe"]
3507
3507
  }).trim();
3508
3508
  const major = parseInt(version.split(".")[0], 10);
3509
- if (isNaN(major) || major < 7) {
3509
+ if (Number.isNaN(major) || major < 7) {
3510
3510
  return {
3511
3511
  available: false,
3512
3512
  version,
@@ -10342,7 +10342,7 @@ Installing ${pluginName} from ${localPath}...`));
10342
10342
  }
10343
10343
  await cp(localPath, pluginDir, { recursive: true });
10344
10344
  log(source_default.dim(` Copied to ${pluginDir}`));
10345
- let pluginCopied = true;
10345
+ const pluginCopied = true;
10346
10346
  let symlinksCreated = false;
10347
10347
  try {
10348
10348
  await createPluginSymlinks(pluginName, pkgJson, isGlobal);
@@ -11397,7 +11397,7 @@ var {
11397
11397
  } = import__.default;
11398
11398
 
11399
11399
  // src/cli.ts
11400
- program.name("omp").description("Oh My Pi - Plugin manager for pi configuration").version("0.6.3");
11400
+ program.name("omp").description("Oh My Pi - Plugin manager for pi configuration").version("0.8.2");
11401
11401
  program.command("install [packages...]").alias("i").description("Install plugin(s). No args = install from plugins.json").addHelpText("after", `
11402
11402
  Examples:
11403
11403
  $ omp install @oh-my-pi/subagents # Install from npm (all features)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/cli",
3
- "version": "0.6.3",
3
+ "version": "0.8.2",
4
4
  "description": "Plugin manager for pi - install and manage pi config plugins from git repos",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",