@funnycode/myclaude 0.1.68 → 0.1.69
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/dist/myclaude.js +26 -26
- package/dist/myclaude.mjs +26 -26
- package/package.json +1 -1
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-07-15T01:
|
|
7
|
+
VERSION: "0.1.69",
|
|
8
|
+
BUILD_TIME: "2026-07-15T01:55:18.082Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -66089,14 +66089,14 @@ var require_runtime_features = __commonJS((exports, module) => {
|
|
|
66089
66089
|
...runtimeFeaturesAsNodeModule,
|
|
66090
66090
|
...runtimeFeaturesByExportedProperty
|
|
66091
66091
|
];
|
|
66092
|
-
function detectRuntimeFeature(
|
|
66093
|
-
if (runtimeFeaturesAsNodeModule.includes(
|
|
66094
|
-
return detectRuntimeFeatureByNodeModule(`node:${
|
|
66095
|
-
} else if (runtimeFeaturesByExportedProperty.includes(
|
|
66096
|
-
const [moduleName, property2] = exportedPropertyLookup[
|
|
66092
|
+
function detectRuntimeFeature(feature) {
|
|
66093
|
+
if (runtimeFeaturesAsNodeModule.includes(feature)) {
|
|
66094
|
+
return detectRuntimeFeatureByNodeModule(`node:${feature}`);
|
|
66095
|
+
} else if (runtimeFeaturesByExportedProperty.includes(feature)) {
|
|
66096
|
+
const [moduleName, property2] = exportedPropertyLookup[feature];
|
|
66097
66097
|
return detectRuntimeFeatureByExportedProperty(moduleName, property2);
|
|
66098
66098
|
}
|
|
66099
|
-
throw new TypeError(`unknown feature: ${
|
|
66099
|
+
throw new TypeError(`unknown feature: ${feature}`);
|
|
66100
66100
|
}
|
|
66101
66101
|
|
|
66102
66102
|
class RuntimeFeatures {
|
|
@@ -66104,18 +66104,18 @@ var require_runtime_features = __commonJS((exports, module) => {
|
|
|
66104
66104
|
clear() {
|
|
66105
66105
|
this.#map.clear();
|
|
66106
66106
|
}
|
|
66107
|
-
has(
|
|
66108
|
-
return this.#map.get(
|
|
66107
|
+
has(feature) {
|
|
66108
|
+
return this.#map.get(feature) ?? this.#detectRuntimeFeature(feature);
|
|
66109
66109
|
}
|
|
66110
|
-
set(
|
|
66111
|
-
if (features.includes(
|
|
66112
|
-
throw new TypeError(`unknown feature: ${
|
|
66110
|
+
set(feature, value) {
|
|
66111
|
+
if (features.includes(feature) === false) {
|
|
66112
|
+
throw new TypeError(`unknown feature: ${feature}`);
|
|
66113
66113
|
}
|
|
66114
|
-
this.#map.set(
|
|
66114
|
+
this.#map.set(feature, value);
|
|
66115
66115
|
}
|
|
66116
|
-
#detectRuntimeFeature(
|
|
66117
|
-
const result = detectRuntimeFeature(
|
|
66118
|
-
this.#map.set(
|
|
66116
|
+
#detectRuntimeFeature(feature) {
|
|
66117
|
+
const result = detectRuntimeFeature(feature);
|
|
66118
|
+
this.#map.set(feature, result);
|
|
66119
66119
|
return result;
|
|
66120
66120
|
}
|
|
66121
66121
|
}
|
|
@@ -85728,14 +85728,14 @@ updates please upgrade to a supported Node.js LTS version.
|
|
|
85728
85728
|
More information can be found at: https://a.co/c895JFp`);
|
|
85729
85729
|
}
|
|
85730
85730
|
};
|
|
85731
|
-
function setCredentialFeature(credentials,
|
|
85731
|
+
function setCredentialFeature(credentials, feature, value) {
|
|
85732
85732
|
if (!credentials.$source) {
|
|
85733
85733
|
credentials.$source = {};
|
|
85734
85734
|
}
|
|
85735
|
-
credentials.$source[
|
|
85735
|
+
credentials.$source[feature] = value;
|
|
85736
85736
|
return credentials;
|
|
85737
85737
|
}
|
|
85738
|
-
function setFeature(context,
|
|
85738
|
+
function setFeature(context, feature, value) {
|
|
85739
85739
|
if (!context.__aws_sdk_context) {
|
|
85740
85740
|
context.__aws_sdk_context = {
|
|
85741
85741
|
features: {}
|
|
@@ -85743,13 +85743,13 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
85743
85743
|
} else if (!context.__aws_sdk_context.features) {
|
|
85744
85744
|
context.__aws_sdk_context.features = {};
|
|
85745
85745
|
}
|
|
85746
|
-
context.__aws_sdk_context.features[
|
|
85746
|
+
context.__aws_sdk_context.features[feature] = value;
|
|
85747
85747
|
}
|
|
85748
|
-
function setTokenFeature(token,
|
|
85748
|
+
function setTokenFeature(token, feature, value) {
|
|
85749
85749
|
if (!token.$source) {
|
|
85750
85750
|
token.$source = {};
|
|
85751
85751
|
}
|
|
85752
|
-
token.$source[
|
|
85752
|
+
token.$source[feature] = value;
|
|
85753
85753
|
return token;
|
|
85754
85754
|
}
|
|
85755
85755
|
exports.emitWarningIfUnsupportedVersion = emitWarningIfUnsupportedVersion;
|
|
@@ -92048,7 +92048,7 @@ var require_dist_cjs25 = __commonJS((exports) => {
|
|
|
92048
92048
|
}
|
|
92049
92049
|
return cursor;
|
|
92050
92050
|
};
|
|
92051
|
-
function setFeature(context,
|
|
92051
|
+
function setFeature(context, feature, value) {
|
|
92052
92052
|
if (!context.__smithy_context) {
|
|
92053
92053
|
context.__smithy_context = {
|
|
92054
92054
|
features: {}
|
|
@@ -92056,7 +92056,7 @@ var require_dist_cjs25 = __commonJS((exports) => {
|
|
|
92056
92056
|
} else if (!context.__smithy_context.features) {
|
|
92057
92057
|
context.__smithy_context.features = {};
|
|
92058
92058
|
}
|
|
92059
|
-
context.__smithy_context.features[
|
|
92059
|
+
context.__smithy_context.features[feature] = value;
|
|
92060
92060
|
}
|
|
92061
92061
|
|
|
92062
92062
|
class DefaultIdentityProviderConfig {
|
|
@@ -275134,7 +275134,7 @@ var init_tools = __esm(() => {
|
|
|
275134
275134
|
TASK_LIST_TOOL_NAME,
|
|
275135
275135
|
TASK_UPDATE_TOOL_NAME,
|
|
275136
275136
|
SEND_MESSAGE_TOOL_NAME,
|
|
275137
|
-
...
|
|
275137
|
+
...getFeatureValue_CACHED_MAY_BE_STALE("AGENT_TRIGGERS", false) ? [CRON_CREATE_TOOL_NAME, CRON_DELETE_TOOL_NAME, CRON_LIST_TOOL_NAME] : []
|
|
275138
275138
|
]);
|
|
275139
275139
|
COORDINATOR_MODE_ALLOWED_TOOLS = new Set([
|
|
275140
275140
|
AGENT_TOOL_NAME,
|
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-07-15T01:
|
|
7
|
+
VERSION: "0.1.69",
|
|
8
|
+
BUILD_TIME: "2026-07-15T01:55:18.082Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -66089,14 +66089,14 @@ var require_runtime_features = __commonJS((exports, module) => {
|
|
|
66089
66089
|
...runtimeFeaturesAsNodeModule,
|
|
66090
66090
|
...runtimeFeaturesByExportedProperty
|
|
66091
66091
|
];
|
|
66092
|
-
function detectRuntimeFeature(
|
|
66093
|
-
if (runtimeFeaturesAsNodeModule.includes(
|
|
66094
|
-
return detectRuntimeFeatureByNodeModule(`node:${
|
|
66095
|
-
} else if (runtimeFeaturesByExportedProperty.includes(
|
|
66096
|
-
const [moduleName, property2] = exportedPropertyLookup[
|
|
66092
|
+
function detectRuntimeFeature(feature) {
|
|
66093
|
+
if (runtimeFeaturesAsNodeModule.includes(feature)) {
|
|
66094
|
+
return detectRuntimeFeatureByNodeModule(`node:${feature}`);
|
|
66095
|
+
} else if (runtimeFeaturesByExportedProperty.includes(feature)) {
|
|
66096
|
+
const [moduleName, property2] = exportedPropertyLookup[feature];
|
|
66097
66097
|
return detectRuntimeFeatureByExportedProperty(moduleName, property2);
|
|
66098
66098
|
}
|
|
66099
|
-
throw new TypeError(`unknown feature: ${
|
|
66099
|
+
throw new TypeError(`unknown feature: ${feature}`);
|
|
66100
66100
|
}
|
|
66101
66101
|
|
|
66102
66102
|
class RuntimeFeatures {
|
|
@@ -66104,18 +66104,18 @@ var require_runtime_features = __commonJS((exports, module) => {
|
|
|
66104
66104
|
clear() {
|
|
66105
66105
|
this.#map.clear();
|
|
66106
66106
|
}
|
|
66107
|
-
has(
|
|
66108
|
-
return this.#map.get(
|
|
66107
|
+
has(feature) {
|
|
66108
|
+
return this.#map.get(feature) ?? this.#detectRuntimeFeature(feature);
|
|
66109
66109
|
}
|
|
66110
|
-
set(
|
|
66111
|
-
if (features.includes(
|
|
66112
|
-
throw new TypeError(`unknown feature: ${
|
|
66110
|
+
set(feature, value) {
|
|
66111
|
+
if (features.includes(feature) === false) {
|
|
66112
|
+
throw new TypeError(`unknown feature: ${feature}`);
|
|
66113
66113
|
}
|
|
66114
|
-
this.#map.set(
|
|
66114
|
+
this.#map.set(feature, value);
|
|
66115
66115
|
}
|
|
66116
|
-
#detectRuntimeFeature(
|
|
66117
|
-
const result = detectRuntimeFeature(
|
|
66118
|
-
this.#map.set(
|
|
66116
|
+
#detectRuntimeFeature(feature) {
|
|
66117
|
+
const result = detectRuntimeFeature(feature);
|
|
66118
|
+
this.#map.set(feature, result);
|
|
66119
66119
|
return result;
|
|
66120
66120
|
}
|
|
66121
66121
|
}
|
|
@@ -85728,14 +85728,14 @@ updates please upgrade to a supported Node.js LTS version.
|
|
|
85728
85728
|
More information can be found at: https://a.co/c895JFp`);
|
|
85729
85729
|
}
|
|
85730
85730
|
};
|
|
85731
|
-
function setCredentialFeature(credentials,
|
|
85731
|
+
function setCredentialFeature(credentials, feature, value) {
|
|
85732
85732
|
if (!credentials.$source) {
|
|
85733
85733
|
credentials.$source = {};
|
|
85734
85734
|
}
|
|
85735
|
-
credentials.$source[
|
|
85735
|
+
credentials.$source[feature] = value;
|
|
85736
85736
|
return credentials;
|
|
85737
85737
|
}
|
|
85738
|
-
function setFeature(context,
|
|
85738
|
+
function setFeature(context, feature, value) {
|
|
85739
85739
|
if (!context.__aws_sdk_context) {
|
|
85740
85740
|
context.__aws_sdk_context = {
|
|
85741
85741
|
features: {}
|
|
@@ -85743,13 +85743,13 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
85743
85743
|
} else if (!context.__aws_sdk_context.features) {
|
|
85744
85744
|
context.__aws_sdk_context.features = {};
|
|
85745
85745
|
}
|
|
85746
|
-
context.__aws_sdk_context.features[
|
|
85746
|
+
context.__aws_sdk_context.features[feature] = value;
|
|
85747
85747
|
}
|
|
85748
|
-
function setTokenFeature(token,
|
|
85748
|
+
function setTokenFeature(token, feature, value) {
|
|
85749
85749
|
if (!token.$source) {
|
|
85750
85750
|
token.$source = {};
|
|
85751
85751
|
}
|
|
85752
|
-
token.$source[
|
|
85752
|
+
token.$source[feature] = value;
|
|
85753
85753
|
return token;
|
|
85754
85754
|
}
|
|
85755
85755
|
exports.emitWarningIfUnsupportedVersion = emitWarningIfUnsupportedVersion;
|
|
@@ -92048,7 +92048,7 @@ var require_dist_cjs25 = __commonJS((exports) => {
|
|
|
92048
92048
|
}
|
|
92049
92049
|
return cursor;
|
|
92050
92050
|
};
|
|
92051
|
-
function setFeature(context,
|
|
92051
|
+
function setFeature(context, feature, value) {
|
|
92052
92052
|
if (!context.__smithy_context) {
|
|
92053
92053
|
context.__smithy_context = {
|
|
92054
92054
|
features: {}
|
|
@@ -92056,7 +92056,7 @@ var require_dist_cjs25 = __commonJS((exports) => {
|
|
|
92056
92056
|
} else if (!context.__smithy_context.features) {
|
|
92057
92057
|
context.__smithy_context.features = {};
|
|
92058
92058
|
}
|
|
92059
|
-
context.__smithy_context.features[
|
|
92059
|
+
context.__smithy_context.features[feature] = value;
|
|
92060
92060
|
}
|
|
92061
92061
|
|
|
92062
92062
|
class DefaultIdentityProviderConfig {
|
|
@@ -275134,7 +275134,7 @@ var init_tools = __esm(() => {
|
|
|
275134
275134
|
TASK_LIST_TOOL_NAME,
|
|
275135
275135
|
TASK_UPDATE_TOOL_NAME,
|
|
275136
275136
|
SEND_MESSAGE_TOOL_NAME,
|
|
275137
|
-
...
|
|
275137
|
+
...getFeatureValue_CACHED_MAY_BE_STALE("AGENT_TRIGGERS", false) ? [CRON_CREATE_TOOL_NAME, CRON_DELETE_TOOL_NAME, CRON_LIST_TOOL_NAME] : []
|
|
275138
275138
|
]);
|
|
275139
275139
|
COORDINATOR_MODE_ALLOWED_TOOLS = new Set([
|
|
275140
275140
|
AGENT_TOOL_NAME,
|