get-claudia 1.0.0 → 1.0.2
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 +3 -3
- package/bin/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
<p align="center">
|
|
19
|
-
Created by <a href="https://github.com/kbanc85">Kamil Banc</a>
|
|
19
|
+
Created by <a href="https://github.com/kbanc85">Kamil Banc</a> · <a href="https://x.com/kamilbanc">@kamilbanc</a> · <a href="https://aiadopters.club">AI Adopters Club</a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
22
22
|
---
|
|
@@ -34,7 +34,7 @@ She's not a chatbot. She's a thinking partner with memory.
|
|
|
34
34
|
```bash
|
|
35
35
|
npx get-claudia
|
|
36
36
|
cd claudia
|
|
37
|
-
|
|
37
|
+
claude
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
She'll introduce herself and set things up for you.
|
|
@@ -61,7 +61,7 @@ She'll introduce herself and set things up for you.
|
|
|
61
61
|
<img src="assets/demo.gif" alt="Claudia onboarding conversation" width="700">
|
|
62
62
|
</p>
|
|
63
63
|
|
|
64
|
-
When you first run `
|
|
64
|
+
When you first run `claude`, she introduces herself and learns about you:
|
|
65
65
|
|
|
66
66
|
```
|
|
67
67
|
Claudia: Hey there. I'm Claudia. Before we dive into anything, I'd love
|
package/bin/index.js
CHANGED
|
@@ -30,6 +30,7 @@ const bannerArt = `
|
|
|
30
30
|
const banner = `
|
|
31
31
|
${colors.yellow}${bannerArt}${colors.reset}
|
|
32
32
|
${colors.dim}Agentic executive assistant — learns and adapts to how you work.${colors.reset}
|
|
33
|
+
${colors.dim}by Kamil Banc${colors.reset}
|
|
33
34
|
`;
|
|
34
35
|
|
|
35
36
|
function main() {
|
|
@@ -76,7 +77,7 @@ function main() {
|
|
|
76
77
|
const cdStep = isCurrentDir ? '' : ` ${colors.cyan}cd ${targetDir}${colors.reset}\n`;
|
|
77
78
|
console.log(`
|
|
78
79
|
${colors.bold}Next:${colors.reset}
|
|
79
|
-
${cdStep} ${colors.cyan}
|
|
80
|
+
${cdStep} ${colors.cyan}claude${colors.reset}
|
|
80
81
|
|
|
81
82
|
${colors.dim}She'll introduce herself and set things up for you.${colors.reset}
|
|
82
83
|
`);
|