@funnycode/myclaude 0.1.35 → 0.1.37
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 +1 -9
- package/README.zh-CN.md +1 -9
- package/dist/myclaude.js +10 -13
- package/dist/myclaude.mjs +10 -13
- package/package.json +2 -1
- package/seed/known_marketplaces.json +10 -0
- package/seed/marketplaces/ecc/.claude-plugin/marketplace.json +29 -0
package/README.md
CHANGED
|
@@ -225,15 +225,7 @@ Once enabled, CodeGraph's MCP server starts automatically and provides semantic
|
|
|
225
225
|
|
|
226
226
|
### ECC — Agent Operating System
|
|
227
227
|
|
|
228
|
-
[ECC](https://github.com/affaan-m/ECC) is a cross-harness agent ecosystem with 200+ skills, agents, hooks, and
|
|
229
|
-
|
|
230
|
-
```bash
|
|
231
|
-
# Browse available ECC plugins
|
|
232
|
-
/plugin
|
|
233
|
-
|
|
234
|
-
# Install a plugin from ECC marketplace
|
|
235
|
-
/plugin install <plugin-name>@ecc
|
|
236
|
-
```
|
|
228
|
+
[ECC](https://github.com/affaan-m/ECC) is a cross-harness agent ecosystem with 200+ skills, agents, hooks, rules, and MCP servers. **Built-in out of the box** — all ECC plugins are auto-installed on first startup, no manual setup needed. Skills, agents, and commands are immediately available via `/` commands.
|
|
237
229
|
|
|
238
230
|
---
|
|
239
231
|
|
package/README.zh-CN.md
CHANGED
|
@@ -246,15 +246,7 @@ codegraph init
|
|
|
246
246
|
|
|
247
247
|
### ECC — 跨平台代理操作系统
|
|
248
248
|
|
|
249
|
-
[ECC](https://github.com/affaan-m/ECC) 是一个跨 harness 的代理生态系统,包含 200+ 技能、代理、hooks
|
|
250
|
-
|
|
251
|
-
```bash
|
|
252
|
-
# 浏览可用的 ECC 插件
|
|
253
|
-
/plugin
|
|
254
|
-
|
|
255
|
-
# 从 ECC 市场安装插件
|
|
256
|
-
/plugin install <插件名>@ecc
|
|
257
|
-
```
|
|
249
|
+
[ECC](https://github.com/affaan-m/ECC) 是一个跨 harness 的代理生态系统,包含 200+ 技能、代理、hooks、规则和 MCP 服务器。**开箱即用** — 首次启动时自动安装所有 ECC 插件,无需手动配置。技能、代理和命令立即通过 `/` 命令可用。
|
|
258
250
|
|
|
259
251
|
---
|
|
260
252
|
|
package/dist/myclaude.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-06-23T13:
|
|
7
|
+
VERSION: "0.1.37",
|
|
8
|
+
BUILD_TIME: "2026-06-23T13:46:09.406Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -554541,16 +554541,8 @@ var init_codegraphCheck = __esm(() => {
|
|
|
554541
554541
|
// src/plugins/bundled/eccMarketplace.ts
|
|
554542
554542
|
async function ensureEccMarketplaceRegistered() {
|
|
554543
554543
|
try {
|
|
554544
|
-
const
|
|
554545
|
-
|
|
554546
|
-
logForDebugging("ECC marketplace already registered, skipping");
|
|
554547
|
-
return true;
|
|
554548
|
-
}
|
|
554549
|
-
const result = await addMarketplaceSource({
|
|
554550
|
-
source: "git",
|
|
554551
|
-
url: ECC_MARKETPLACE_URL
|
|
554552
|
-
});
|
|
554553
|
-
logForDebugging(`ECC marketplace registered as '${result.name}' (materialized: ${!result.alreadyMaterialized})`);
|
|
554544
|
+
const changed = await registerSeedMarketplaces();
|
|
554545
|
+
logForDebugging(changed ? "ECC seed marketplace registered" : "ECC marketplace already registered, skipped");
|
|
554554
554546
|
return true;
|
|
554555
554547
|
} catch (error49) {
|
|
554556
554548
|
logForDebugging(`Failed to register ECC marketplace: ${error49}`, {
|
|
@@ -554559,7 +554551,6 @@ async function ensureEccMarketplaceRegistered() {
|
|
|
554559
554551
|
return false;
|
|
554560
554552
|
}
|
|
554561
554553
|
}
|
|
554562
|
-
var ECC_MARKETPLACE_URL = "https://github.com/affaan-m/ECC.git";
|
|
554563
554554
|
var init_eccMarketplace = __esm(() => {
|
|
554564
554555
|
init_debug();
|
|
554565
554556
|
init_marketplaceManager();
|
|
@@ -572002,6 +571993,10 @@ var init_main3 = __esm(() => {
|
|
|
572002
571993
|
}
|
|
572003
571994
|
});
|
|
572004
571995
|
|
|
571996
|
+
// src/entrypoints/cli.tsx
|
|
571997
|
+
import { join as join157 } from "path";
|
|
571998
|
+
import { fileURLToPath as fileURLToPath9 } from "url";
|
|
571999
|
+
|
|
572005
572000
|
// src/utils/envCompat.ts
|
|
572006
572001
|
var ENV_ALIASES = {
|
|
572007
572002
|
MYCLAUDE_MODEL: "CLAUDE_CODE_MODEL",
|
|
@@ -572063,6 +572058,8 @@ function applyEnvAliases() {
|
|
|
572063
572058
|
}
|
|
572064
572059
|
|
|
572065
572060
|
// src/entrypoints/cli.tsx
|
|
572061
|
+
var __dirname3 = join157(fileURLToPath9(import.meta.url), "..");
|
|
572062
|
+
process.env.CLAUDE_CODE_PLUGIN_SEED_DIR = join157(__dirname3, "../../seed");
|
|
572066
572063
|
applyEnvAliases();
|
|
572067
572064
|
process.env.COREPACK_ENABLE_AUTO_PIN = "0";
|
|
572068
572065
|
if (process.env.CLAUDE_CODE_REMOTE === "true") {
|
package/dist/myclaude.mjs
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-06-23T13:
|
|
7
|
+
VERSION: "0.1.37",
|
|
8
|
+
BUILD_TIME: "2026-06-23T13:46:09.406Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -554541,16 +554541,8 @@ var init_codegraphCheck = __esm(() => {
|
|
|
554541
554541
|
// src/plugins/bundled/eccMarketplace.ts
|
|
554542
554542
|
async function ensureEccMarketplaceRegistered() {
|
|
554543
554543
|
try {
|
|
554544
|
-
const
|
|
554545
|
-
|
|
554546
|
-
logForDebugging("ECC marketplace already registered, skipping");
|
|
554547
|
-
return true;
|
|
554548
|
-
}
|
|
554549
|
-
const result = await addMarketplaceSource({
|
|
554550
|
-
source: "git",
|
|
554551
|
-
url: ECC_MARKETPLACE_URL
|
|
554552
|
-
});
|
|
554553
|
-
logForDebugging(`ECC marketplace registered as '${result.name}' (materialized: ${!result.alreadyMaterialized})`);
|
|
554544
|
+
const changed = await registerSeedMarketplaces();
|
|
554545
|
+
logForDebugging(changed ? "ECC seed marketplace registered" : "ECC marketplace already registered, skipped");
|
|
554554
554546
|
return true;
|
|
554555
554547
|
} catch (error49) {
|
|
554556
554548
|
logForDebugging(`Failed to register ECC marketplace: ${error49}`, {
|
|
@@ -554559,7 +554551,6 @@ async function ensureEccMarketplaceRegistered() {
|
|
|
554559
554551
|
return false;
|
|
554560
554552
|
}
|
|
554561
554553
|
}
|
|
554562
|
-
var ECC_MARKETPLACE_URL = "https://github.com/affaan-m/ECC.git";
|
|
554563
554554
|
var init_eccMarketplace = __esm(() => {
|
|
554564
554555
|
init_debug();
|
|
554565
554556
|
init_marketplaceManager();
|
|
@@ -572002,6 +571993,10 @@ var init_main3 = __esm(() => {
|
|
|
572002
571993
|
}
|
|
572003
571994
|
});
|
|
572004
571995
|
|
|
571996
|
+
// src/entrypoints/cli.tsx
|
|
571997
|
+
import { join as join157 } from "path";
|
|
571998
|
+
import { fileURLToPath as fileURLToPath9 } from "url";
|
|
571999
|
+
|
|
572005
572000
|
// src/utils/envCompat.ts
|
|
572006
572001
|
var ENV_ALIASES = {
|
|
572007
572002
|
MYCLAUDE_MODEL: "CLAUDE_CODE_MODEL",
|
|
@@ -572063,6 +572058,8 @@ function applyEnvAliases() {
|
|
|
572063
572058
|
}
|
|
572064
572059
|
|
|
572065
572060
|
// src/entrypoints/cli.tsx
|
|
572061
|
+
var __dirname3 = join157(fileURLToPath9(import.meta.url), "..");
|
|
572062
|
+
process.env.CLAUDE_CODE_PLUGIN_SEED_DIR = join157(__dirname3, "../../seed");
|
|
572066
572063
|
applyEnvAliases();
|
|
572067
572064
|
process.env.COREPACK_ENABLE_AUTO_PIN = "0";
|
|
572068
572065
|
if (process.env.CLAUDE_CODE_REMOTE === "true") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funnycode/myclaude",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An open-source AI coding assistant in your terminal - powered by Claude",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"dist/",
|
|
33
|
+
"seed/",
|
|
33
34
|
"bin/",
|
|
34
35
|
"LICENSE",
|
|
35
36
|
"README.md",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ecc",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Affaan Mustafa",
|
|
5
|
+
"email": "me@affaanmustafa.com"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows"
|
|
9
|
+
},
|
|
10
|
+
"plugins": [
|
|
11
|
+
{
|
|
12
|
+
"name": "ecc",
|
|
13
|
+
"source": "./",
|
|
14
|
+
"description": "Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses",
|
|
15
|
+
"version": "2.0.0",
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Affaan Mustafa",
|
|
18
|
+
"email": "me@affaanmustafa.com"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://ecc.tools",
|
|
21
|
+
"repository": "https://github.com/affaan-m/ECC",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"keywords": ["agents", "skills", "hooks", "commands", "tdd", "code-review", "security", "best-practices"],
|
|
24
|
+
"category": "workflow",
|
|
25
|
+
"tags": ["agents", "skills", "hooks", "commands", "tdd", "code-review", "security", "best-practices"],
|
|
26
|
+
"strict": false
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|