ai-summon 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 +8 -32
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,8 +9,7 @@ A small TypeScript CLI (binary name: `ai`) for:
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
13
|
-
yarn build:install
|
|
12
|
+
npm install -g ai-summon
|
|
14
13
|
```
|
|
15
14
|
|
|
16
15
|
After install, you should have the `ai` command available:
|
|
@@ -19,6 +18,13 @@ After install, you should have the `ai` command available:
|
|
|
19
18
|
ai --help
|
|
20
19
|
```
|
|
21
20
|
|
|
21
|
+
### Install from source (dev)
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
yarn install
|
|
25
|
+
yarn build:install
|
|
26
|
+
```
|
|
27
|
+
|
|
22
28
|
## Commands
|
|
23
29
|
|
|
24
30
|
### `ai init`
|
|
@@ -116,41 +122,11 @@ Example:
|
|
|
116
122
|
```json
|
|
117
123
|
{
|
|
118
124
|
"workingDirectory": "/Users/you/dev",
|
|
119
|
-
"repos": {},
|
|
120
|
-
"yiren": {},
|
|
121
125
|
"urls": {},
|
|
122
126
|
"urlGroups": {}
|
|
123
127
|
}
|
|
124
128
|
```
|
|
125
129
|
|
|
126
|
-
### Manual mode (grouped projects)
|
|
127
|
-
|
|
128
|
-
If `workingDirectory` is not set, `ai cursor` / `ai claude` will use `repos` (two-step selection: category → project).
|
|
129
|
-
|
|
130
|
-
Example:
|
|
131
|
-
|
|
132
|
-
```json
|
|
133
|
-
{
|
|
134
|
-
"repos": {
|
|
135
|
-
"work": {
|
|
136
|
-
"impactful": "/Users/you/dev/impactful",
|
|
137
|
-
"payments": "/Users/you/dev/payments"
|
|
138
|
-
},
|
|
139
|
-
"personal": {
|
|
140
|
-
"dotfiles": "/Users/you/dev/dotfiles"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"yiren": {},
|
|
144
|
-
"urls": {
|
|
145
|
-
"jira": "https://your-jira.example.com",
|
|
146
|
-
"gitlab": "https://your-gitlab.example.com"
|
|
147
|
-
},
|
|
148
|
-
"urlGroups": {
|
|
149
|
-
"daily": ["https://example.com", "https://example.org"]
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
```
|
|
153
|
-
|
|
154
130
|
## Development
|
|
155
131
|
|
|
156
132
|
```bash
|