@orderful/droid 0.37.0 → 0.38.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/.claude-plugin/marketplace.json +1 -118
- package/.claude-plugin/plugin.json +49 -0
- package/AGENTS.md +4 -0
- package/CHANGELOG.md +43 -0
- package/README.md +53 -39
- package/dist/bin/droid.js +525 -212
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/tui/components/PlatformBadges.d.ts.map +1 -1
- package/dist/commands/tui/components/SettingsDetails.d.ts.map +1 -1
- package/dist/commands/tui/hooks/useAppUpdate.d.ts.map +1 -1
- package/dist/commands/tui/views/SetupScreen.d.ts.map +1 -1
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/index.js +345 -186
- package/dist/lib/agents.d.ts +4 -2
- package/dist/lib/agents.d.ts.map +1 -1
- package/dist/lib/migrations.d.ts.map +1 -1
- package/dist/lib/platform.codex.d.ts +36 -0
- package/dist/lib/platform.codex.d.ts.map +1 -0
- package/dist/lib/platforms.d.ts +30 -24
- package/dist/lib/platforms.d.ts.map +1 -1
- package/dist/lib/skills.d.ts +4 -2
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/types.d.ts +2 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/tools/brain/.claude-plugin/plugin.json +8 -1
- package/dist/tools/brain/TOOL.yaml +1 -1
- package/dist/tools/brain/skills/brain/SKILL.md +6 -3
- package/dist/tools/brain/skills/brain/references/workflows.md +9 -5
- package/dist/tools/brain/skills/brain-obsidian/SKILL.md +2 -0
- package/dist/tools/coach/.claude-plugin/plugin.json +6 -0
- package/dist/tools/coach/skills/coach/SKILL.md +3 -0
- package/dist/tools/code-review/.claude-plugin/plugin.json +12 -0
- package/dist/tools/code-review/skills/code-review/SKILL.md +2 -0
- package/dist/tools/codex/.claude-plugin/plugin.json +9 -0
- package/dist/tools/codex/skills/codex/SKILL.md +3 -0
- package/dist/tools/comments/.claude-plugin/plugin.json +6 -0
- package/dist/tools/comments/skills/comments/SKILL.md +5 -0
- package/dist/tools/droid/.claude-plugin/plugin.json +8 -1
- package/dist/tools/droid/TOOL.yaml +4 -2
- package/dist/tools/droid/commands/setup.md +125 -0
- package/dist/tools/droid/skills/droid/SKILL.md +117 -2
- package/dist/tools/plan/.claude-plugin/plugin.json +6 -0
- package/dist/tools/plan/skills/plan/SKILL.md +2 -0
- package/dist/tools/project/.claude-plugin/plugin.json +6 -0
- package/dist/tools/project/skills/project/SKILL.md +3 -0
- package/dist/tools/tech-design/.claude-plugin/plugin.json +7 -1
- package/dist/tools/tech-design/TOOL.yaml +1 -1
- package/dist/tools/tech-design/commands/tech-design.md +2 -0
- package/dist/tools/tech-design/skills/tech-design/SKILL.md +39 -9
- package/dist/tools/tech-design/skills/tech-design/references/publish.md +272 -216
- package/dist/tools/tech-design/skills/tech-design/references/start.md +50 -20
- package/dist/tools/wrapup/.claude-plugin/plugin.json +6 -0
- package/dist/tools/wrapup/skills/wrapup/SKILL.md +2 -0
- package/package.json +1 -1
- package/scripts/build-plugins.ts +154 -6
- package/src/bin/droid.ts +16 -0
- package/src/commands/setup.ts +107 -2
- package/src/commands/tui/components/PlatformBadges.tsx +1 -0
- package/src/commands/tui/components/SettingsDetails.tsx +1 -0
- package/src/commands/tui/hooks/useAppUpdate.ts +21 -1
- package/src/commands/tui/views/SetupScreen.tsx +10 -1
- package/src/commands/update.ts +21 -1
- package/src/lib/agents.ts +13 -2
- package/src/lib/migrations.ts +81 -9
- package/src/lib/platform.codex.ts +131 -0
- package/src/lib/platforms.ts +127 -6
- package/src/lib/skills.ts +53 -6
- package/src/lib/types.ts +1 -0
- package/src/tools/brain/.claude-plugin/plugin.json +8 -1
- package/src/tools/brain/TOOL.yaml +1 -1
- package/src/tools/brain/skills/brain/SKILL.md +6 -3
- package/src/tools/brain/skills/brain/references/workflows.md +9 -5
- package/src/tools/brain/skills/brain-obsidian/SKILL.md +2 -0
- package/src/tools/coach/.claude-plugin/plugin.json +6 -0
- package/src/tools/coach/skills/coach/SKILL.md +3 -0
- package/src/tools/code-review/.claude-plugin/plugin.json +12 -0
- package/src/tools/code-review/skills/code-review/SKILL.md +2 -0
- package/src/tools/codex/.claude-plugin/plugin.json +9 -0
- package/src/tools/codex/skills/codex/SKILL.md +3 -0
- package/src/tools/comments/.claude-plugin/plugin.json +6 -0
- package/src/tools/comments/skills/comments/SKILL.md +5 -0
- package/src/tools/droid/.claude-plugin/plugin.json +8 -1
- package/src/tools/droid/TOOL.yaml +4 -2
- package/src/tools/droid/commands/setup.md +125 -0
- package/src/tools/droid/skills/droid/SKILL.md +117 -2
- package/src/tools/plan/.claude-plugin/plugin.json +6 -0
- package/src/tools/plan/skills/plan/SKILL.md +2 -0
- package/src/tools/project/.claude-plugin/plugin.json +6 -0
- package/src/tools/project/skills/project/SKILL.md +3 -0
- package/src/tools/tech-design/.claude-plugin/plugin.json +7 -1
- package/src/tools/tech-design/TOOL.yaml +1 -1
- package/src/tools/tech-design/commands/tech-design.md +2 -0
- package/src/tools/tech-design/skills/tech-design/SKILL.md +39 -9
- package/src/tools/tech-design/skills/tech-design/references/publish.md +272 -216
- package/src/tools/tech-design/skills/tech-design/references/start.md +50 -20
- package/src/tools/wrapup/.claude-plugin/plugin.json +6 -0
- package/src/tools/wrapup/skills/wrapup/SKILL.md +2 -0
package/dist/lib/agents.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { Platform } from './types';
|
|
2
2
|
/**
|
|
3
3
|
* Get the installation path for agents based on platform
|
|
4
|
+
* Returns null for platforms that don't support agents (e.g., OpenAI Codex)
|
|
4
5
|
*/
|
|
5
|
-
export declare function getAgentsInstallPath(platform: Platform): string;
|
|
6
|
+
export declare function getAgentsInstallPath(platform: Platform): string | null;
|
|
6
7
|
/**
|
|
7
8
|
* Agent manifest structure
|
|
8
9
|
*/
|
|
@@ -34,8 +35,9 @@ export declare function getBundledAgents(): AgentManifest[];
|
|
|
34
35
|
export declare function getAgentStatusDisplay(status?: string): string;
|
|
35
36
|
/**
|
|
36
37
|
* Get installed agents directory for the configured platform
|
|
38
|
+
* Returns null if platform doesn't support agents
|
|
37
39
|
*/
|
|
38
|
-
export declare function getInstalledAgentsDir(): string;
|
|
40
|
+
export declare function getInstalledAgentsDir(): string | null;
|
|
39
41
|
/**
|
|
40
42
|
* Check if an agent is installed
|
|
41
43
|
*/
|
package/dist/lib/agents.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../../src/lib/agents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAOnC
|
|
1
|
+
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../../src/lib/agents.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAOnC;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAEtE;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACrC,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,KAAK,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAsBD;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,aAAa,GAAG,IAAI,CA2BzE;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,aAAa,EAAE,CA+BlD;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAU7D;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,GAAG,IAAI,CAGrD;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAM3D;AA+CD;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,EACjB,QAAQ,CAAC,EAAE,QAAQ,GAClB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CA4CvC;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiB9D;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAMrF;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAC5B,SAAS,EAAE,MAAM,EACjB,QAAQ,CAAC,EAAE,QAAQ,GAClB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAqBvC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migrations.d.ts","sourceRoot":"","sources":["../../src/lib/migrations.ts"],"names":[],"mappings":"AAaA,OAAO,EACL,KAAK,SAAS,EAIf,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"migrations.d.ts","sourceRoot":"","sources":["../../src/lib/migrations.ts"],"names":[],"mappings":"AAaA,OAAO,EACL,KAAK,SAAS,EAIf,MAAM,SAAS,CAAC;AAskBjB;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,EAAE,CAE/D;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAc/D;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CACpC,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM,GACd,IAAI,CAmBN;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAC3B,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EACnB,SAAS,EAAE,MAAM,GAChB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,CA2CtC;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAC/B,QAAQ,EAAE,MAAM,EAChB,gBAAgB,EAAE,MAAM,GACvB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,CAStC;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,cAAc,EAAE,MAAM,GAAG;IAC5D,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAyDA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAI Codex platform-specific logic
|
|
3
|
+
*
|
|
4
|
+
* Codex reads skills from ~/.codex/skills/ but droid installs to ~/.claude/skills/ (unified path).
|
|
5
|
+
* We create symlinks from Codex's location to the unified path.
|
|
6
|
+
*
|
|
7
|
+
* Key differences from other platforms:
|
|
8
|
+
* - Skills only (no commands or agents)
|
|
9
|
+
* - Uses symlinks instead of copying files
|
|
10
|
+
* - Must preserve user's own Codex skills (not managed by droid)
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Codex skills path - where Codex reads skills from
|
|
14
|
+
*/
|
|
15
|
+
export declare const CODEX_SKILLS_PATH: string;
|
|
16
|
+
/**
|
|
17
|
+
* Create a symlink for a skill in the Codex skills directory
|
|
18
|
+
* Symlinks from ~/.codex/skills/{name} → ~/.claude/skills/{name}
|
|
19
|
+
*
|
|
20
|
+
* Safety guarantees:
|
|
21
|
+
* - Only creates symlinks for skills that exist in unified path
|
|
22
|
+
* - Never deletes real directories (only replaces existing symlinks)
|
|
23
|
+
* - Skips if symlink already points to correct location
|
|
24
|
+
*/
|
|
25
|
+
export declare function createCodexSymlink(skillName: string): void;
|
|
26
|
+
/**
|
|
27
|
+
* Remove a symlink for a skill from the Codex skills directory
|
|
28
|
+
* Only removes if it's a symlink (preserves user's real directories)
|
|
29
|
+
*/
|
|
30
|
+
export declare function removeCodexSymlink(skillName: string): void;
|
|
31
|
+
/**
|
|
32
|
+
* Remove all droid-managed Codex symlinks (when Codex is removed or ignored)
|
|
33
|
+
* Only removes symlinks, preserves user's real directories and .system folder
|
|
34
|
+
*/
|
|
35
|
+
export declare function removeAllCodexSymlinks(): void;
|
|
36
|
+
//# sourceMappingURL=platform.codex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"platform.codex.d.ts","sourceRoot":"","sources":["../../src/lib/platform.codex.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAmBH;;GAEG;AACH,eAAO,MAAM,iBAAiB,QAAsC,CAAC;AAErE;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CA2C1D;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAe1D;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,IAAI,IAAI,CAiB7C"}
|
package/dist/lib/platforms.d.ts
CHANGED
|
@@ -1,32 +1,20 @@
|
|
|
1
1
|
import { Platform, type DroidConfig } from './types';
|
|
2
|
+
export { CODEX_SKILLS_PATH, createCodexSymlink, removeCodexSymlink, removeAllCodexSymlinks, } from './platform.codex';
|
|
2
3
|
/**
|
|
3
4
|
* Platform-specific paths configuration
|
|
4
5
|
* Single source of truth for all platform-specific directories
|
|
5
6
|
*
|
|
6
7
|
* Note: Skills are unified to ~/.claude/skills/ (all platforms read this location).
|
|
7
8
|
* Commands and agents remain platform-specific as there's no cross-platform compatibility.
|
|
9
|
+
* OpenAI Codex only supports skills (via symlinks) - no commands, agents, or config integration.
|
|
8
10
|
*/
|
|
9
|
-
export declare const PLATFORM_PATHS: {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
readonly opencode: {
|
|
17
|
-
readonly skills: string;
|
|
18
|
-
readonly commands: string;
|
|
19
|
-
readonly agents: string;
|
|
20
|
-
readonly config: string;
|
|
21
|
-
};
|
|
22
|
-
readonly cursor: {
|
|
23
|
-
readonly skills: string;
|
|
24
|
-
readonly commands: string;
|
|
25
|
-
readonly agents: string;
|
|
26
|
-
readonly config: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
export type PlatformPaths = typeof PLATFORM_PATHS[Platform];
|
|
11
|
+
export declare const PLATFORM_PATHS: Record<Platform, {
|
|
12
|
+
skills: string;
|
|
13
|
+
commands: string | null;
|
|
14
|
+
agents: string | null;
|
|
15
|
+
config: string | null;
|
|
16
|
+
}>;
|
|
17
|
+
export type PlatformPaths = (typeof PLATFORM_PATHS)[Platform];
|
|
30
18
|
/**
|
|
31
19
|
* Get all paths for a platform
|
|
32
20
|
*/
|
|
@@ -37,16 +25,27 @@ export declare function getPlatformPaths(platform: Platform): PlatformPaths;
|
|
|
37
25
|
export declare function getSkillsPath(platform: Platform): string;
|
|
38
26
|
/**
|
|
39
27
|
* Get commands install path for a platform
|
|
28
|
+
* Returns null for platforms that don't support custom commands (e.g., OpenAI Codex)
|
|
40
29
|
*/
|
|
41
|
-
export declare function getCommandsPath(platform: Platform): string;
|
|
30
|
+
export declare function getCommandsPath(platform: Platform): string | null;
|
|
42
31
|
/**
|
|
43
32
|
* Get agents install path for a platform
|
|
33
|
+
* Returns null for platforms that don't support custom agents (e.g., OpenAI Codex)
|
|
44
34
|
*/
|
|
45
|
-
export declare function getAgentsPath(platform: Platform): string;
|
|
35
|
+
export declare function getAgentsPath(platform: Platform): string | null;
|
|
46
36
|
/**
|
|
47
37
|
* Get platform config file path (CLAUDE.md or AGENTS.md)
|
|
38
|
+
* Returns null for platforms without config file integration (e.g., OpenAI Codex)
|
|
48
39
|
*/
|
|
49
|
-
export declare function getConfigPath(platform: Platform): string;
|
|
40
|
+
export declare function getConfigPath(platform: Platform): string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Check if a platform supports custom commands
|
|
43
|
+
*/
|
|
44
|
+
export declare function platformSupportsCommands(platform: Platform): boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Check if a platform supports custom agents
|
|
47
|
+
*/
|
|
48
|
+
export declare function platformSupportsAgents(platform: Platform): boolean;
|
|
50
49
|
/**
|
|
51
50
|
* Detect ALL installed platforms
|
|
52
51
|
* Returns array of all platforms that are installed on the system
|
|
@@ -56,4 +55,11 @@ export declare function detectAllPlatforms(): Platform[];
|
|
|
56
55
|
* Get platforms to install to (detected minus ignored)
|
|
57
56
|
*/
|
|
58
57
|
export declare function getActivePlatforms(config: DroidConfig): Platform[];
|
|
58
|
+
/**
|
|
59
|
+
* Sync installed tools to newly detected platforms.
|
|
60
|
+
* Called early in common commands to handle platforms added after initial setup.
|
|
61
|
+
*
|
|
62
|
+
* Returns array of newly synced platforms (empty if none).
|
|
63
|
+
*/
|
|
64
|
+
export declare function syncNewPlatforms(config: DroidConfig): Platform[];
|
|
59
65
|
//# sourceMappingURL=platforms.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/lib/platforms.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,QAAQ,EAAE,KAAK,WAAW,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"platforms.d.ts","sourceRoot":"","sources":["../../src/lib/platforms.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,QAAQ,EAAE,KAAK,WAAW,EAAE,MAAM,SAAS,CAAC;AAGrD,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,GACvB,MAAM,kBAAkB,CAAC;AAW1B;;;;;;;GAOG;AACH,eAAO,MAAM,cAAc,EAAE,MAAM,CACjC,QAAQ,EACR;IACE,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CA6BF,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,QAAQ,CAAC,CAAC;AAE9D;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,GAAG,aAAa,CAElE;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,CAExD;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAEjE;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAE/D;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAE/D;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAEpE;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAElE;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,IAAI,QAAQ,EAAE,CAgC/C;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,WAAW,GAAG,QAAQ,EAAE,CAIlE;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,WAAW,GAAG,QAAQ,EAAE,CAwBhE"}
|
package/dist/lib/skills.d.ts
CHANGED
|
@@ -9,12 +9,14 @@ export declare function getBundledSkillsDir(): string;
|
|
|
9
9
|
export declare function getSkillsInstallPath(platform: Platform): string;
|
|
10
10
|
/**
|
|
11
11
|
* Get the commands installation path based on platform
|
|
12
|
+
* Returns null for platforms that don't support commands (e.g., OpenAI Codex)
|
|
12
13
|
*/
|
|
13
|
-
export declare function getCommandsInstallPath(platform: Platform): string;
|
|
14
|
+
export declare function getCommandsInstallPath(platform: Platform): string | null;
|
|
14
15
|
/**
|
|
15
16
|
* Get the path to the platform's main config markdown file
|
|
17
|
+
* Returns null for platforms without config file integration (e.g., OpenAI Codex)
|
|
16
18
|
*/
|
|
17
|
-
export declare function getPlatformConfigPath(platform: Platform): string;
|
|
19
|
+
export declare function getPlatformConfigPath(platform: Platform): string | null;
|
|
18
20
|
/**
|
|
19
21
|
* Update the platform's config file with skill registrations
|
|
20
22
|
*/
|
package/dist/lib/skills.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../../src/lib/skills.ts"],"names":[],"mappings":"AAYA,OAAO,EACL,QAAQ,EACR,WAAW,EACX,KAAK,aAAa,EAClB,KAAK,cAAc,EAGpB,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../../src/lib/skills.ts"],"names":[],"mappings":"AAYA,OAAO,EACL,QAAQ,EACR,WAAW,EACX,KAAK,aAAa,EAClB,KAAK,cAAc,EAGpB,MAAM,SAAS,CAAC;AAyBjB;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,MAAM,CAE5C;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,CAE/D;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAExE;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,IAAI,CAEvE;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CACxC,QAAQ,EAAE,QAAQ,EAClB,eAAe,EAAE,MAAM,EAAE,GACxB,IAAI,CA8CN;AAwBD;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,aAAa,GAAG,IAAI,CA2BxE;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAC3B,SAAS,EAAE,MAAM,GAChB;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAwB9C;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,aAAa,EAAE,CA4BlD;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAI3D;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,GAAG,cAAc,GAAG,IAAI,CAI1E;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,GAAG;IACvD,SAAS,EAAE,OAAO,CAAC;IACnB,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;CAC/B,CAkBA;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,KAAK,CAAC;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC,CAqBD;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,SAAS,EAAE,MAAM,GAAG;IAC9C,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,CA+BA;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI;IACjC,OAAO,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC3D,MAAM,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/C,QAAQ,EAAE,MAAM,CAAC;CAClB,CAiCA;AAmCD;;GAEG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG;IAC/C,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,CA0RA;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG;IACjD,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB,CA0FA;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,MAAM,CAUlE;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAChC,WAAW,EAAE,MAAM,EACnB,SAAS,EAAE,MAAM,GAChB,OAAO,CAuBT;AAED;;GAEG;AACH,wBAAgB,cAAc,CAC5B,WAAW,EAAE,MAAM,EACnB,SAAS,EAAE,MAAM,GAChB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CA4DvC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,WAAW,EAAE,MAAM,EACnB,SAAS,EAAE,MAAM,GAChB;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAgDvC"}
|
package/dist/lib/types.d.ts
CHANGED
package/dist/lib/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IAClB,UAAU,gBAAgB;IAC1B,QAAQ,aAAa;IACrB,MAAM,WAAW;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-brain",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Your scratchpad (or brain) - a collaborative space for planning and research. Create docs with /brain plan, /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
@@ -12,5 +12,12 @@
|
|
|
12
12
|
"droid",
|
|
13
13
|
"ai",
|
|
14
14
|
"brain"
|
|
15
|
+
],
|
|
16
|
+
"skills": [
|
|
17
|
+
"./skills/brain/SKILL.md",
|
|
18
|
+
"./skills/brain-obsidian/SKILL.md"
|
|
19
|
+
],
|
|
20
|
+
"commands": [
|
|
21
|
+
"./commands/brain.md"
|
|
15
22
|
]
|
|
16
23
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
name: brain
|
|
2
2
|
description: "Your scratchpad (or brain) - a collaborative space for planning and research. Create docs with /brain plan, /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions."
|
|
3
|
-
version: 0.
|
|
3
|
+
version: 0.4.0
|
|
4
4
|
status: beta
|
|
5
5
|
|
|
6
6
|
includes:
|
|
@@ -32,6 +32,7 @@ Your **scratchpad** (or **brain**) - a collaborative space for planning, researc
|
|
|
32
32
|
| -------------- | ------- | ------------------------------------------ |
|
|
33
33
|
| `brain_dir` | (none) | Where docs are stored - **must be configured** |
|
|
34
34
|
| `inbox_folder` | (empty) | Root folder for new docs (e.g., `0-Inbox`) |
|
|
35
|
+
| `override` | (none) | User-defined behaviour overrides |
|
|
35
36
|
|
|
36
37
|
**If not configured:** Ask the user:
|
|
37
38
|
> "Where would you like to store brain docs? Common choices:
|
|
@@ -39,11 +40,13 @@ Your **scratchpad** (or **brain**) - a collaborative space for planning, researc
|
|
|
39
40
|
> - `~/src/github.com/brain` - With your other repos
|
|
40
41
|
> - An existing Obsidian vault path"
|
|
41
42
|
|
|
42
|
-
Then
|
|
43
|
-
```
|
|
44
|
-
brain_dir
|
|
43
|
+
Then set their choice:
|
|
44
|
+
```bash
|
|
45
|
+
droid config --set tools.brain.brain_dir="{user's choice}"
|
|
45
46
|
```
|
|
46
47
|
|
|
48
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides for how to create, register, and use overrides.
|
|
49
|
+
|
|
47
50
|
## Commands
|
|
48
51
|
|
|
49
52
|
**Reserved keywords:** `search`, `add`, `check`, `cleanup`, `done`
|
|
@@ -14,7 +14,11 @@ Detailed procedures for each brain operation.
|
|
|
14
14
|
- If `brain_dir` is not configured, **ask the user** where they want brain docs stored
|
|
15
15
|
- **Do NOT skip this step or assume defaults**
|
|
16
16
|
|
|
17
|
-
2. **
|
|
17
|
+
2. **Check for override** (see `/droid` skill § Override Lookup)
|
|
18
|
+
- If override applies for `search` command, follow override instructions instead of step 3
|
|
19
|
+
- Fall back to step 3 if override fails
|
|
20
|
+
|
|
21
|
+
3. **Search for matches** (default behaviour)
|
|
18
22
|
|
|
19
23
|
```
|
|
20
24
|
Glob: {brain_dir}/**/*{topic}*.md
|
|
@@ -22,20 +26,20 @@ Detailed procedures for each brain operation.
|
|
|
22
26
|
|
|
23
27
|
Fuzzy match the topic against doc filenames
|
|
24
28
|
|
|
25
|
-
|
|
29
|
+
4. **Handle results:**
|
|
26
30
|
- **No matches**: Offer to create a new doc with that topic
|
|
27
31
|
- **One match**: Open it
|
|
28
32
|
- **Multiple matches**: Present list, let user choose
|
|
29
33
|
|
|
30
|
-
|
|
34
|
+
5. **Read the doc** and summarize key points:
|
|
31
35
|
- Current status
|
|
32
36
|
- Main topic/context
|
|
33
37
|
- Any open `@droid` comments
|
|
34
38
|
- Recent updates
|
|
35
39
|
|
|
36
|
-
|
|
40
|
+
6. **Set as active doc** - Remember path for subsequent `/brain add` and `/brain check` commands
|
|
37
41
|
|
|
38
|
-
|
|
42
|
+
7. **If `-- {instruction}` provided:** Execute the follow-up instruction against the loaded doc
|
|
39
43
|
|
|
40
44
|
## Creating
|
|
41
45
|
|
|
@@ -33,6 +33,8 @@ droid config --set tools.brain.brain_dir=~/path/to/your/vault
|
|
|
33
33
|
| `areas_folder` | `1-Areas` | Area docs (PARA only) |
|
|
34
34
|
| `resources_folder` | `3-Resources` | Reference material (PARA only) |
|
|
35
35
|
|
|
36
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
37
|
+
|
|
36
38
|
## What This Adds
|
|
37
39
|
|
|
38
40
|
| Feature | Description |
|
|
@@ -52,6 +52,9 @@ plan → AI scaffolds → human implements → AI coaches → iterate → ship
|
|
|
52
52
|
| Setting | Default | Description |
|
|
53
53
|
| -------------------- | -------- | ------------------------------------------------------- |
|
|
54
54
|
| `scaffold_verbosity` | `medium` | How detailed hints are: `minimal`, `medium`, `detailed` |
|
|
55
|
+
| `override` | (none) | User-defined behaviour overrides |
|
|
56
|
+
|
|
57
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
55
58
|
|
|
56
59
|
<!-- Note: @mention is the target, not author. @{user} = AI talking TO user, @droid = user talking TO AI -->
|
|
57
60
|
> @{user} Not yet - droid currently shows config as free text input. But we could add an `enum` type to the config schema that presents as a select dropdown in the TUI. Good feature request - want me to create an issue for it?
|
|
@@ -12,5 +12,17 @@
|
|
|
12
12
|
"droid",
|
|
13
13
|
"ai",
|
|
14
14
|
"code-review"
|
|
15
|
+
],
|
|
16
|
+
"skills": [
|
|
17
|
+
"./skills/code-review/SKILL.md"
|
|
18
|
+
],
|
|
19
|
+
"commands": [
|
|
20
|
+
"./commands/code-review.md"
|
|
21
|
+
],
|
|
22
|
+
"agents": [
|
|
23
|
+
"./agents/edi-standards-reviewer.md",
|
|
24
|
+
"./agents/error-handling-reviewer.md",
|
|
25
|
+
"./agents/test-coverage-analyzer.md",
|
|
26
|
+
"./agents/type-reviewer.md"
|
|
15
27
|
]
|
|
16
28
|
}
|
|
@@ -16,6 +16,8 @@ Code-review has no configuration of its own. Optional integration with other too
|
|
|
16
16
|
- **Brain skill** (optional): If installed, offers to save review results to a `/brain review` doc
|
|
17
17
|
- Check with: `droid config --get tools.brain` to see if `brain_dir` is configured
|
|
18
18
|
|
|
19
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
20
|
+
|
|
19
21
|
## How It Works
|
|
20
22
|
|
|
21
23
|
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
@@ -82,6 +82,9 @@ If prerequisites fail, guide user to fix:
|
|
|
82
82
|
|---------|---------|-------------|
|
|
83
83
|
| codex_repo | ~/src/github.com/orderful-codex | Path to local codex repo |
|
|
84
84
|
| freshness_days | 30 | Days before staleness warning |
|
|
85
|
+
| override | (none) | User-defined behaviour overrides |
|
|
86
|
+
|
|
87
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
85
88
|
|
|
86
89
|
## Commands
|
|
87
90
|
|
|
@@ -122,8 +122,13 @@ ai_mentions: "@claude"
|
|
|
122
122
|
|
|
123
123
|
# Keep comments after addressing them (default: true)
|
|
124
124
|
preserve_comments: true
|
|
125
|
+
|
|
126
|
+
# User-defined behaviour overrides (see /droid skill)
|
|
127
|
+
override: ...
|
|
125
128
|
```
|
|
126
129
|
|
|
130
|
+
**Overrides:** This skill supports user-defined overrides. See `/droid` skill § Skill Overrides.
|
|
131
|
+
|
|
127
132
|
## File Type Support
|
|
128
133
|
|
|
129
134
|
Works in any text file. Respects `.gitignore` and skips common build directories (node_modules, dist, .git, etc.).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Core droid meta-skill for update awareness, tool discovery, and usage help. Checks for updates, helps users find tools, and answers 'how do I...' questions about droid workflows.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
@@ -11,5 +11,12 @@
|
|
|
11
11
|
"keywords": [
|
|
12
12
|
"droid",
|
|
13
13
|
"ai"
|
|
14
|
+
],
|
|
15
|
+
"skills": [
|
|
16
|
+
"./skills/droid/SKILL.md",
|
|
17
|
+
"./skills/droid-bootstrap/SKILL.md"
|
|
18
|
+
],
|
|
19
|
+
"commands": [
|
|
20
|
+
"./commands/setup.md"
|
|
14
21
|
]
|
|
15
22
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
name: droid
|
|
2
2
|
description: "Core droid meta-skill for update awareness, tool discovery, and usage help. Checks for updates, helps users find tools, and answers 'how do I...' questions about droid workflows."
|
|
3
|
-
version: 0.
|
|
3
|
+
version: 0.7.0
|
|
4
4
|
status: beta
|
|
5
5
|
|
|
6
6
|
# System tool - always stays current regardless of auto-update settings
|
|
@@ -12,7 +12,9 @@ includes:
|
|
|
12
12
|
required: true
|
|
13
13
|
- name: droid-bootstrap
|
|
14
14
|
required: true
|
|
15
|
-
commands:
|
|
15
|
+
commands:
|
|
16
|
+
- name: setup
|
|
17
|
+
is_alias: false
|
|
16
18
|
agents: []
|
|
17
19
|
|
|
18
20
|
dependencies: []
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: setup
|
|
3
|
+
description: "Configure Droid after marketplace installation"
|
|
4
|
+
argument-hint: ""
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# /setup
|
|
8
|
+
|
|
9
|
+
**User invoked:** `/setup`
|
|
10
|
+
|
|
11
|
+
**Your task:** Guide the user through initial Droid configuration.
|
|
12
|
+
|
|
13
|
+
## When to Use
|
|
14
|
+
|
|
15
|
+
Run this command after installing Droid plugins via the marketplace (when `~/.droid/config.yaml` doesn't exist).
|
|
16
|
+
|
|
17
|
+
## Configuration Flow
|
|
18
|
+
|
|
19
|
+
### 1. Check Existing Configuration
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
ls -la ~/.droid/config.yaml 2>/dev/null || echo "No config found"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
- If config exists: Ask "You already have a config. Reconfigure? [y/N]"
|
|
26
|
+
- If no config: Proceed with setup
|
|
27
|
+
|
|
28
|
+
### 2. Create Config Directory
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
mkdir -p ~/.droid
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### 3. Detect Git Username
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
git config user.name
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Store this for `git_username` in config.
|
|
41
|
+
|
|
42
|
+
### 4. Gather Global Settings
|
|
43
|
+
|
|
44
|
+
Ask the user:
|
|
45
|
+
|
|
46
|
+
> **What handle should be used for @mentions in code comments?**
|
|
47
|
+
> (This is used by the comments tool for async collaboration)
|
|
48
|
+
> Default: `@droid`
|
|
49
|
+
|
|
50
|
+
### 5. Detect Installed Tools
|
|
51
|
+
|
|
52
|
+
Check which Droid plugins are installed by looking for skill files:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Check Claude Code skills directory and plugin cache
|
|
56
|
+
ls ~/.claude/skills/ 2>/dev/null | grep -E '^(brain|project|codex|wrapup|code-review|tech-design|comments|coach|plan)-' || true
|
|
57
|
+
find ~/.claude/plugins/cache -name "SKILL.md" -path "*droid*" 2>/dev/null | head -20 || true
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### 6. Configure Tools That Need Settings
|
|
61
|
+
|
|
62
|
+
For each detected tool that requires configuration:
|
|
63
|
+
|
|
64
|
+
**brain:**
|
|
65
|
+
> **Where should brain docs be stored?**
|
|
66
|
+
> Default: `~/brain`
|
|
67
|
+
> (This directory will be created if it doesn't exist)
|
|
68
|
+
|
|
69
|
+
**project:**
|
|
70
|
+
> **Where are your projects located?**
|
|
71
|
+
> Default: `~/Projects`
|
|
72
|
+
> (Used to find and link project-level context)
|
|
73
|
+
|
|
74
|
+
**codex:**
|
|
75
|
+
> **Where is your shared codex repository?**
|
|
76
|
+
> Default: `~/codex`
|
|
77
|
+
> (Leave blank to skip codex configuration)
|
|
78
|
+
|
|
79
|
+
### 7. Write Configuration
|
|
80
|
+
|
|
81
|
+
Create `~/.droid/config.yaml` with the gathered settings:
|
|
82
|
+
|
|
83
|
+
```yaml
|
|
84
|
+
# Droid global configuration
|
|
85
|
+
# Generated by /setup
|
|
86
|
+
|
|
87
|
+
user_mention: "@droid" # Or user's chosen handle
|
|
88
|
+
git_username: "detected-name"
|
|
89
|
+
|
|
90
|
+
# Tool-specific settings
|
|
91
|
+
brain:
|
|
92
|
+
brain_dir: "~/brain"
|
|
93
|
+
|
|
94
|
+
project:
|
|
95
|
+
projects_dir: "~/Projects"
|
|
96
|
+
|
|
97
|
+
codex:
|
|
98
|
+
codex_dir: "~/codex" # Only if provided
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### 8. Confirm Success
|
|
102
|
+
|
|
103
|
+
Display a summary:
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
Droid configured successfully!
|
|
107
|
+
|
|
108
|
+
Global settings:
|
|
109
|
+
- User mention: @droid
|
|
110
|
+
- Git username: Your Name
|
|
111
|
+
|
|
112
|
+
Tool settings:
|
|
113
|
+
- brain: ~/brain
|
|
114
|
+
- project: ~/Projects
|
|
115
|
+
- codex: ~/codex
|
|
116
|
+
|
|
117
|
+
You can edit these settings anytime at ~/.droid/config.yaml
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## Notes
|
|
121
|
+
|
|
122
|
+
- All paths should be expanded (~ to full home directory) when written
|
|
123
|
+
- Only include tool sections for tools that are actually installed
|
|
124
|
+
- If a required directory doesn't exist, offer to create it
|
|
125
|
+
- Skip tools that aren't installed rather than configuring them
|