fly-to-moon 0.1.13 → 0.1.14
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 +32 -21
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -29,31 +29,36 @@ fttm is an autonomous coding agent orchestrator — each iteration makes one sma
|
|
|
29
29
|
|
|
30
30
|
## Quick Start
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
$ fttm "reduce complexity of the codebase without changing functionality"
|
|
34
|
-
# have a good sleep
|
|
35
|
-
```
|
|
32
|
+
### Install
|
|
36
33
|
|
|
37
34
|
```sh
|
|
38
|
-
|
|
39
|
-
--max-iterations 10 \
|
|
40
|
-
--max-tokens 5000000
|
|
41
|
-
# have a good nap
|
|
35
|
+
npm install -g fly-to-moon
|
|
42
36
|
```
|
|
43
37
|
|
|
44
|
-
### OpenCode
|
|
38
|
+
### OpenCode
|
|
45
39
|
|
|
46
40
|
```sh
|
|
47
|
-
|
|
41
|
+
fttm "your task here" \
|
|
48
42
|
--agent opencode \
|
|
49
43
|
--model minimax-cn-coding-plan/MiniMax-M2.7
|
|
50
|
-
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Claude Code
|
|
47
|
+
|
|
48
|
+
```sh
|
|
49
|
+
fttm "your task here" --agent claude
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Codex
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
fttm "your task here" --agent codex
|
|
51
56
|
```
|
|
52
57
|
|
|
53
58
|
### Background/Daemon Mode
|
|
54
59
|
|
|
55
60
|
```sh
|
|
56
|
-
|
|
61
|
+
fttm "your task here" \
|
|
57
62
|
--agent opencode \
|
|
58
63
|
--model minimax-cn-coding-plan/MiniMax-M2.7 \
|
|
59
64
|
--max-iterations 50 \
|
|
@@ -61,22 +66,28 @@ $ fttm "implement a new feature" \
|
|
|
61
66
|
# runs in background, returns immediately to terminal
|
|
62
67
|
```
|
|
63
68
|
|
|
64
|
-
|
|
65
|
-
`fttm` supports macOS, Linux, and Windows.
|
|
66
|
-
|
|
67
|
-
## Install
|
|
69
|
+
### Skills
|
|
68
70
|
|
|
69
|
-
|
|
71
|
+
Install the `fttm` skill for interactive command generation:
|
|
70
72
|
|
|
71
73
|
```sh
|
|
72
|
-
|
|
74
|
+
npx skills add evoerax/fly-to-the-moon --skill fttm
|
|
73
75
|
```
|
|
74
76
|
|
|
75
|
-
|
|
77
|
+
Then use it:
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
fttm skill -> interactive fttm command builder
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Run `fttm` from inside a Git repository with a clean working tree. If you are starting from a plain directory, run `git init` first.
|
|
84
|
+
`fttm` supports macOS, Linux, and Windows.
|
|
85
|
+
|
|
86
|
+
## Install (From source)
|
|
76
87
|
|
|
77
88
|
```sh
|
|
78
|
-
git clone https://github.com/
|
|
79
|
-
cd
|
|
89
|
+
git clone https://github.com/evoerax/fly-to-the-moon.git
|
|
90
|
+
cd fly-to-the-moon
|
|
80
91
|
npm install
|
|
81
92
|
npm run build
|
|
82
93
|
npm link
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fly-to-moon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Humans fly to space. AI does the work. — Fly to the moon, fly to Mars",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"
|
|
7
|
+
"fttm": "dist/cli.mjs"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsdown",
|