@synth1s/cloak 2.3.2 → 2.4.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 +1 -0
- package/package.json +1 -1
- package/src/cli.js +18 -0
- package/src/commands/bind.js +24 -0
- package/src/commands/init.js +11 -0
- package/src/commands/unbind.js +16 -0
- package/src/lib/messages.js +14 -0
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/synth1s/cloak/actions/workflows/ci.yml)
|
|
4
4
|
[](https://www.npmjs.com/package/@synth1s/cloak)
|
|
5
|
+
[](https://www.npmjs.com/package/@synth1s/cloak)
|
|
5
6
|
[](LICENSE)
|
|
6
7
|
|
|
7
8
|
**Stop logging out. Start switching.**
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -13,6 +13,8 @@ import { listAccounts } from './commands/list.js'
|
|
|
13
13
|
import { deleteAccount } from './commands/delete.js'
|
|
14
14
|
import { whoami } from './commands/whoami.js'
|
|
15
15
|
import { renameAccount } from './commands/rename.js'
|
|
16
|
+
import { bindAccount } from './commands/bind.js'
|
|
17
|
+
import { unbindAccount } from './commands/unbind.js'
|
|
16
18
|
import { initShell } from './commands/init.js'
|
|
17
19
|
|
|
18
20
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
@@ -94,6 +96,22 @@ program
|
|
|
94
96
|
return renameAccount(oldName, newName)
|
|
95
97
|
})
|
|
96
98
|
|
|
99
|
+
program
|
|
100
|
+
.command('bind <name>')
|
|
101
|
+
.description('Bind this directory to a cloak')
|
|
102
|
+
.action((name) => {
|
|
103
|
+
renderContextBar('bind')
|
|
104
|
+
return bindAccount(name)
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
program
|
|
108
|
+
.command('unbind')
|
|
109
|
+
.description('Unbind this directory')
|
|
110
|
+
.action(() => {
|
|
111
|
+
renderContextBar('unbind')
|
|
112
|
+
return unbindAccount()
|
|
113
|
+
})
|
|
114
|
+
|
|
97
115
|
program
|
|
98
116
|
.command('context-bar', { hidden: true })
|
|
99
117
|
.argument('<command>')
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { writeFileSync } from 'fs'
|
|
2
|
+
import { join } from 'path'
|
|
3
|
+
import { profileExists } from '../lib/paths.js'
|
|
4
|
+
import { validateAccountName } from '../lib/validate.js'
|
|
5
|
+
import * as msg from '../lib/messages.js'
|
|
6
|
+
|
|
7
|
+
export async function bindAccount(name, dir = process.cwd()) {
|
|
8
|
+
const validation = validateAccountName(name)
|
|
9
|
+
if (!validation.valid) {
|
|
10
|
+
console.error(msg.validationError(validation.error))
|
|
11
|
+
process.exit(1)
|
|
12
|
+
return
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
if (!profileExists(name)) {
|
|
16
|
+
console.error(msg.accountNotFound(name))
|
|
17
|
+
console.error(msg.suggestCreate(name))
|
|
18
|
+
process.exit(1)
|
|
19
|
+
return
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
writeFileSync(join(dir, '.cloak'), name + '\n')
|
|
23
|
+
console.log(msg.cloakBound(name))
|
|
24
|
+
}
|
package/src/commands/init.js
CHANGED
|
@@ -43,6 +43,17 @@ export function getInitScript() {
|
|
|
43
43
|
' command claude "$@"',
|
|
44
44
|
' fi',
|
|
45
45
|
' else',
|
|
46
|
+
' if [ -f ".cloak" ]; then',
|
|
47
|
+
' local _bind_name',
|
|
48
|
+
' _bind_name=$(cat .cloak 2>/dev/null | tr -d "[:space:]")',
|
|
49
|
+
' if [ -n "$_bind_name" ]; then',
|
|
50
|
+
' local _bind_output',
|
|
51
|
+
' _bind_output=$(command cloak switch --print-env "$_bind_name" 2>/dev/null)',
|
|
52
|
+
' if [ $? -eq 0 ]; then',
|
|
53
|
+
' eval "$_bind_output"',
|
|
54
|
+
' fi',
|
|
55
|
+
' fi',
|
|
56
|
+
' fi',
|
|
46
57
|
' if [ -n "$CLAUDE_CONFIG_DIR" ]; then',
|
|
47
58
|
' command cloak context-bar claude',
|
|
48
59
|
' fi',
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { unlinkSync, existsSync } from 'fs'
|
|
2
|
+
import { join } from 'path'
|
|
3
|
+
import * as msg from '../lib/messages.js'
|
|
4
|
+
|
|
5
|
+
export async function unbindAccount(dir = process.cwd()) {
|
|
6
|
+
const cloakFile = join(dir, '.cloak')
|
|
7
|
+
|
|
8
|
+
if (!existsSync(cloakFile)) {
|
|
9
|
+
console.error(msg.noCloakFile())
|
|
10
|
+
process.exit(1)
|
|
11
|
+
return
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
unlinkSync(cloakFile)
|
|
15
|
+
console.log(msg.cloakUnbound())
|
|
16
|
+
}
|
package/src/lib/messages.js
CHANGED
|
@@ -128,6 +128,20 @@ export function shellIntegrationTip(rcFile) {
|
|
|
128
128
|
chalk.dim(` echo 'eval "$(cloak init)"' >> ${file} && source ${file}\n\n`)
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
// --- Bind/unbind ---
|
|
132
|
+
|
|
133
|
+
export function cloakBound(name) {
|
|
134
|
+
return `${icon.success} Bound this directory to cloak ${chalk.bold(`"${name}"`)}.`
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export function cloakUnbound() {
|
|
138
|
+
return `${icon.success} Unbound this directory.`
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export function noCloakFile() {
|
|
142
|
+
return `${icon.error} No .cloak file in this directory.`
|
|
143
|
+
}
|
|
144
|
+
|
|
131
145
|
// --- Active cloak indicator (shown on claude launch) ---
|
|
132
146
|
|
|
133
147
|
export function wearingCloak(name) {
|