agentbrief 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { Command } from "commander";
3
3
  import { eject, init, list, preview, search, show, update, use } from "./index.js";
4
4
  const program = new Command();
5
- program.name("agentbrief").description("One command turns your AI coding agent into a domain specialist").version("0.2.0");
5
+ program.name("agentbrief").description("One command turns your AI coding agent into a domain specialist").version("0.2.1");
6
6
  program.addHelpText("after", `
7
7
  Quick start:
8
8
  agentbrief use ./path/to/brief Apply a brief to your project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentbrief",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "One command turns your AI coding agent into a domain specialist",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  },
14
14
  "bin": {
15
- "agentbrief": "./dist/cli.js"
15
+ "agentbrief": "dist/cli.js"
16
16
  },
17
17
  "scripts": {
18
18
  "build": "tsc",
@@ -58,7 +58,7 @@
58
58
  "license": "MIT",
59
59
  "repository": {
60
60
  "type": "git",
61
- "url": "https://github.com/0xranx/agentbrief"
61
+ "url": "git+https://github.com/0xranx/agentbrief.git"
62
62
  },
63
63
  "homepage": "https://github.com/0xranx/agentbrief#readme"
64
64
  }