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.
- package/dist/index.js +2 -1
- 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/
|
|
142
|
+
path: ".claude/skills/artisense/SKILL.md",
|
|
142
143
|
label: "Claude Code",
|
|
143
144
|
wrap: (c) => c
|
|
144
145
|
},
|