the-frame-ai 0.1.1 → 0.2.1
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/package.json +3 -3
- package/src/init.js +4 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "the-frame-ai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "FRAME — Framework for AI-Assisted Solo Development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"the-frame-ai": "
|
|
7
|
+
"the-frame-ai": "bin/the-frame-ai"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"bin/",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/andrey-chmerev/the-frame-ai.git"
|
|
25
|
+
"url": "git+https://github.com/andrey-chmerev/the-frame-ai.git"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/andrey-chmerev/the-frame-ai#readme",
|
|
28
28
|
"engines": {
|
package/src/init.js
CHANGED
|
@@ -173,6 +173,9 @@ export async function init(target, flags = {}) {
|
|
|
173
173
|
log('\n--- Проверка установки ---');
|
|
174
174
|
await doctor(target);
|
|
175
175
|
|
|
176
|
-
log(' Next
|
|
176
|
+
log(' Next steps:');
|
|
177
|
+
log(' 1. Open Claude Code in this project');
|
|
178
|
+
log(' 2. Run `/frame:init` — scans codebase, fills MAP.md');
|
|
179
|
+
log(' 3. Run `/frame:daily` — your entry point every day');
|
|
177
180
|
log('');
|
|
178
181
|
}
|