organtic 1.2.1 → 1.3.0

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/index.mjs +1 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -238,7 +238,7 @@ function cachePlugins(selected, commitSha) {
238
238
  const results = [];
239
239
 
240
240
  for (const plugin of selected) {
241
- const srcDir = join(marketplacePath, plugin.name);
241
+ const srcDir = join(marketplacePath, "plugins", plugin.name);
242
242
  const version = getPluginVersion(srcDir);
243
243
  const versionSlug = commitSha.substring(0, 12);
244
244
  const destDir = join(cachePath, plugin.name, versionSlug);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "organtic",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "description": "The AI-native organization. 25 experts from idea to launch. Strategy pipeline (validate > build > launch) + execution plugins (craft, document, present, studio). Claude Code plugin ecosystem.",
5
5
  "bin": {
6
6
  "organtic": "./index.mjs"