artisense 0.1.2 → 0.1.4

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/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -127,6 +127,7 @@ async function loginCommand() {
127
127
  console.log("Authenticated successfully!");
128
128
  console.log(`Credentials saved to ~/.config/artisense/credentials.json
129
129
  `);
130
+ process.exit(0);
130
131
  }
131
132
  function openBrowser(url) {
132
133
  const cmd = process.platform === "darwin" ? `open "${url}"` : process.platform === "win32" ? `start "${url}"` : `xdg-open "${url}"`;
@@ -138,7 +139,7 @@ import { mkdir as mkdir2, writeFile as writeFile2 } from "node:fs/promises";
138
139
  import { resolve as resolve2, dirname as dirname2 } from "node:path";
139
140
  var TARGETS = {
140
141
  claude: {
141
- path: ".claude/commands/artisense.md",
142
+ path: ".claude/skills/artisense/SKILL.md",
142
143
  label: "Claude Code",
143
144
  wrap: (c) => c
144
145
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artisense",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "CLI for Artisense — manage documents from your terminal or AI agent",
5
5
  "license": "MIT",
6
6
  "bin": {