@contextai-core/cli 0.0.1 → 0.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 +38 -0
- package/package.json +9 -5
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# ContextAI CLI
|
|
2
|
+
|
|
3
|
+
Give your AI agents persistent memory. Install pre-built context packs for Cursor, Windsurf, Copilot & more.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Initialize in your project
|
|
9
|
+
npx @contextai-core/cli init
|
|
10
|
+
|
|
11
|
+
# Install a context pack
|
|
12
|
+
npx @contextai-core/cli install nextjs-supabase
|
|
13
|
+
|
|
14
|
+
# Login (for paid packs)
|
|
15
|
+
npx @contextai-core/cli login
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## What is this?
|
|
19
|
+
|
|
20
|
+
AI coding assistants forget your project every session. ContextAI fixes this by giving them a "shared brain" — a `.ai/` folder with your project's context, patterns, and preferences.
|
|
21
|
+
|
|
22
|
+
## Commands
|
|
23
|
+
|
|
24
|
+
| Command | Description |
|
|
25
|
+
|---------|-------------|
|
|
26
|
+
| `init` | Create `.ai/` folder in your project |
|
|
27
|
+
| `install <pack>` | Install a context pack |
|
|
28
|
+
| `login` | Authenticate with ContextAI |
|
|
29
|
+
| `doctor` | Validate your `.ai/` setup |
|
|
30
|
+
|
|
31
|
+
## Browse Packs
|
|
32
|
+
|
|
33
|
+
Visit [contextai.in/browse](https://contextai.in/browse) to discover context packs for your stack.
|
|
34
|
+
|
|
35
|
+
## Learn More
|
|
36
|
+
|
|
37
|
+
- [Documentation](https://contextai.in/docs)
|
|
38
|
+
- [Submit a Pack](https://contextai.in/submit)
|
package/package.json
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contextai-core/cli",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Give your AI agents persistent memory. Install pre-built context packs for Cursor, Windsurf, Copilot & more.",
|
|
5
5
|
"author": "ContextAI",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"ai",
|
|
9
9
|
"context",
|
|
10
10
|
"llm",
|
|
11
|
-
"cli",
|
|
12
|
-
"agents",
|
|
13
11
|
"cursor",
|
|
14
|
-
"windsurf"
|
|
12
|
+
"windsurf",
|
|
13
|
+
"copilot",
|
|
14
|
+
"claude",
|
|
15
|
+
"chatgpt",
|
|
16
|
+
"agents",
|
|
17
|
+
"memory",
|
|
18
|
+
"cli"
|
|
15
19
|
],
|
|
16
20
|
"main": "index.js",
|
|
17
21
|
"bin": {
|