@reinamaccredy/maestro 1.0.0 → 1.1.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.
- package/dist/cli/index.js +16 -2
- package/dist/index.js +387 -346
- package/dist/shared/index.d.ts +1 -0
- package/dist/shared/platform-detection.d.ts +42 -0
- package/package.json +12 -2
- package/postinstall.mjs +97 -4
package/dist/cli/index.js
CHANGED
|
@@ -5948,6 +5948,9 @@ var init_system_directive = () => {};
|
|
|
5948
5948
|
// src/shared/agent-tool-restrictions.ts
|
|
5949
5949
|
var init_agent_tool_restrictions = () => {};
|
|
5950
5950
|
|
|
5951
|
+
// src/shared/platform-detection.ts
|
|
5952
|
+
var init_platform_detection = () => {};
|
|
5953
|
+
|
|
5951
5954
|
// src/shared/index.ts
|
|
5952
5955
|
var init_shared = __esm(() => {
|
|
5953
5956
|
init_frontmatter();
|
|
@@ -5972,6 +5975,7 @@ var init_shared = __esm(() => {
|
|
|
5972
5975
|
init_session_cursor();
|
|
5973
5976
|
init_system_directive();
|
|
5974
5977
|
init_agent_tool_restrictions();
|
|
5978
|
+
init_platform_detection();
|
|
5975
5979
|
});
|
|
5976
5980
|
|
|
5977
5981
|
// src/cli/config-manager.ts
|
|
@@ -7672,7 +7676,7 @@ var import_picocolors2 = __toESM(require_picocolors(), 1);
|
|
|
7672
7676
|
// package.json
|
|
7673
7677
|
var package_default = {
|
|
7674
7678
|
name: "@reinamaccredy/maestro",
|
|
7675
|
-
version: "1.
|
|
7679
|
+
version: "1.1.0",
|
|
7676
7680
|
description: "Maestro - Context-driven development for AI coding agents with music-themed orchestration",
|
|
7677
7681
|
main: "dist/index.js",
|
|
7678
7682
|
types: "dist/index.d.ts",
|
|
@@ -7704,7 +7708,17 @@ var package_default = {
|
|
|
7704
7708
|
typecheck: "tsc --noEmit",
|
|
7705
7709
|
test: "bun test"
|
|
7706
7710
|
},
|
|
7707
|
-
keywords: [
|
|
7711
|
+
keywords: [
|
|
7712
|
+
"maestro",
|
|
7713
|
+
"conductor",
|
|
7714
|
+
"workflow",
|
|
7715
|
+
"opencode",
|
|
7716
|
+
"plugin",
|
|
7717
|
+
"agents",
|
|
7718
|
+
"ai",
|
|
7719
|
+
"llm",
|
|
7720
|
+
"orchestration"
|
|
7721
|
+
],
|
|
7708
7722
|
author: "ReinaMacCredy",
|
|
7709
7723
|
license: "SUL-1.0",
|
|
7710
7724
|
repository: {
|