🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

agent-powerups

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agent-powerups - npm Package Compare versions

Comparing version
0.4.2
to
0.4.3
+11
-2
dist/src/cli/commands/install.js

@@ -232,2 +232,11 @@ import fs from "node:fs/promises";

}
function nativePluginDestBase(agentRoot, profile) {
if (profile.agent === "gemini") {
return path.join(agentRoot, "extensions");
}
if (profile.agent === "claude-code") {
return path.join(agentRoot, "plugins", "cache", "agent-powerups");
}
return path.join(agentRoot, "plugins");
}
async function collectNativePluginInstalls(service, agentRoot, profile, options) {

@@ -242,3 +251,3 @@ const copiedFiles = [];

const sourceDir = path.join(service.repoRoot, "plugins", bundle.name);
const destBase = profile.agent === "gemini" ? path.join(agentRoot, "extensions") : path.join(agentRoot, "plugins");
const destBase = nativePluginDestBase(agentRoot, profile);
const destDir = path.join(destBase, bundle.name);

@@ -362,3 +371,3 @@ const copied = await copyDirectoryContents(sourceDir, destDir, options);

await ensureDirectory(path.join(agentRoot, "skills"), options.dryRun, createdDirectorySet);
await ensureDirectory(options.agent === "gemini" ? path.join(agentRoot, "extensions") : path.join(agentRoot, "plugins"), options.dryRun, createdDirectorySet);
await ensureDirectory(nativePluginDestBase(agentRoot, profile), options.dryRun, createdDirectorySet);
const copyOptions = {

@@ -365,0 +374,0 @@ dryRun: options.dryRun,

+1
-1

@@ -12,3 +12,3 @@ import os from "node:os";

else if (target === "claude-code") {
return path.join(homeDir, ".claude", "plugins");
return path.join(homeDir, ".claude", "plugins", "cache", "agent-powerups");
}

@@ -15,0 +15,0 @@ return process.cwd();

@@ -37,3 +37,3 @@ # Installation

| Codex | `%USERPROFILE%\.codex\skills\` | `%USERPROFILE%\.codex\plugins\` |
| Claude Code | `%USERPROFILE%\.claude\skills\` | `%USERPROFILE%\.claude\plugins\` |
| Claude Code | `%USERPROFILE%\.claude\skills\` | `%USERPROFILE%\.claude\plugins\cache\agent-powerups\` |
| Gemini CLI | `%USERPROFILE%\.gemini\skills\` | `%USERPROFILE%\.gemini\extensions\` |

@@ -40,0 +40,0 @@

{
"name": "agent-powerups",
"version": "0.4.2",
"version": "0.4.3",
"description": "Local-first CLI for browsing, validating, running, and explicitly writing agent powerups.",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",