dryai 0.3.3 → 1.0.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Share AI config CLI
2
2
 
3
- Installs command, rule, and skill sources from `~/.config/agents` by default into Copilot and Cursor targets.
3
+ Installs command, rule, and skill sources from `~/.config/dryai` by default into Copilot and Cursor targets.
4
4
 
5
5
  Pass `--input <path>` to read configs from a different root such as `./config`.
6
6
 
@@ -29,7 +29,7 @@ Live output is written to:
29
29
  One input root can contain all three source types:
30
30
 
31
31
  ```text
32
- ~/.config/agents/
32
+ ~/.config/dryai/
33
33
  ├── commands/
34
34
  │ └── gen-commit-msg.md
35
35
  ├── rules/
@@ -182,6 +182,7 @@ pnpm dev:dryai --input ./config install
182
182
  - Run CI validation with build, test, and `npm pack --dry-run`.
183
183
  - On changes landing on `main`
184
184
  - Run the same CI validation with build, test, and `npm pack --dry-run`.
185
+
185
186
  - On `v*` tag pushed to `main`, the release workflow will:
186
187
  - Verify the tag matches the checked-in `package.json` version.
187
188
  - Verify the tagged commit is on `main`.
@@ -17,7 +17,7 @@ export type AgentsContext = {
17
17
  sourceRoots: SourceRoots;
18
18
  targetRoots: TargetRoots;
19
19
  };
20
- export declare const DEFAULT_INPUT_ROOT_SEGMENTS: readonly [".config", "agents"];
20
+ export declare const DEFAULT_INPUT_ROOT_SEGMENTS: readonly [".config", "dryai"];
21
21
  export declare const DEFAULT_TEST_OUTPUT_DIR_NAME = "output-test";
22
22
  export declare const DEFAULT_SOURCE_ROOT_NAMES: {
23
23
  readonly commands: "commands";
@@ -1,6 +1,6 @@
1
1
  import os from 'node:os';
2
2
  import path from 'node:path';
3
- export const DEFAULT_INPUT_ROOT_SEGMENTS = ['.config', 'agents'];
3
+ export const DEFAULT_INPUT_ROOT_SEGMENTS = ['.config', 'dryai'];
4
4
  export const DEFAULT_TEST_OUTPUT_DIR_NAME = 'output-test';
5
5
  export const DEFAULT_SOURCE_ROOT_NAMES = {
6
6
  commands: 'commands',
package/dest/main.js CHANGED
@@ -65,7 +65,7 @@ async function main() {
65
65
  .helpOption('-h, --help', 'Display this message')
66
66
  .version(cliVersion, '-v, --version', 'Display the current version')
67
67
  .option('--test', 'Shortcut for writing generated output into ./output-test unless --output is also provided')
68
- .option('--input <path>', 'Read input configs from a different root instead of ~/.config/agents', parseOptionValue({
68
+ .option('--input <path>', 'Read input configs from a different root instead of ~/.config/dryai', parseOptionValue({
69
69
  schema: nonEmptyOptionStringSchema,
70
70
  optionLabel: '--input',
71
71
  }))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dryai",
3
- "version": "0.3.3",
3
+ "version": "1.0.0",
4
4
  "description": "CLI for installing shared AI commands, rules, and skills into Copilot and Cursor.",
5
5
  "type": "module",
6
6
  "repository": {