@elmiristic/agent-ready 0.1.0 → 0.1.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/README.md +3 -3
- package/bin/agent-ready.js +1 -1
- package/package.json +1 -1
- package/src/steps/collectAnthropic.js +1 -1
- package/src/steps/collectTelegram.js +1 -1
- package/src/steps/collectTrello.js +1 -1
- package/src/steps/done.js +1 -1
- package/src/steps/setGithubSecrets.js +1 -1
- package/src/steps/welcome.js +1 -1
- package/src/templates/doneWorkflow.js +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Wire an AI coding agent into any GitHub repo in 5 minutes.
|
|
4
4
|
|
|
5
|
-
Tag a Trello card **agent-ready**, and Claude reads the task, edits the code, opens a PR, and pings you on Telegram
|
|
5
|
+
Tag a Trello card **agent-ready**, and Claude reads the task, edits the code, opens a PR, and pings you on Telegram - twice a day, automatically.
|
|
6
6
|
|
|
7
7
|
## Quick start
|
|
8
8
|
|
|
@@ -24,7 +24,7 @@ Then commit and push `.github/` and you're live.
|
|
|
24
24
|
1. Add the `agent-ready` label to a Trello card in your **To Do** list
|
|
25
25
|
2. The agent runs at **9am and 5pm** (or trigger manually in GitHub Actions)
|
|
26
26
|
3. Claude reads the card title + description, identifies relevant files, writes the code
|
|
27
|
-
4. A PR is opened
|
|
27
|
+
4. A PR is opened - nothing touches `main` without your review
|
|
28
28
|
5. You get a Telegram message with the PR link
|
|
29
29
|
6. Merge the PR → card moves to **Done** automatically
|
|
30
30
|
|
|
@@ -32,7 +32,7 @@ Then commit and push `.github/` and you're live.
|
|
|
32
32
|
|
|
33
33
|
- Node.js 18+
|
|
34
34
|
- A GitHub repository
|
|
35
|
-
- GitHub CLI (`gh`) for automatic secret setup (optional
|
|
35
|
+
- GitHub CLI (`gh`) for automatic secret setup (optional - can set manually)
|
|
36
36
|
- A Trello account
|
|
37
37
|
- An Anthropic API key
|
|
38
38
|
|
package/bin/agent-ready.js
CHANGED
|
@@ -10,7 +10,7 @@ switch (command) {
|
|
|
10
10
|
break
|
|
11
11
|
default:
|
|
12
12
|
console.log(`
|
|
13
|
-
agent-ready
|
|
13
|
+
agent-ready: wire an AI coding agent into any repo in 5 minutes
|
|
14
14
|
|
|
15
15
|
Usage:
|
|
16
16
|
npx agent-ready init Set up the agent in your current repo
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import chalk from 'chalk'
|
|
|
2
2
|
import { password } from '@inquirer/prompts'
|
|
3
3
|
|
|
4
4
|
export async function collectAnthropic() {
|
|
5
|
-
console.log(chalk.bold(' Step 2 of 3
|
|
5
|
+
console.log(chalk.bold(' Step 2 of 3: Anthropic'))
|
|
6
6
|
console.log()
|
|
7
7
|
console.log(
|
|
8
8
|
chalk.dim(' 1. Go to: ') + chalk.cyan('https://console.anthropic.com/settings/keys'),
|
|
@@ -2,7 +2,7 @@ import chalk from 'chalk'
|
|
|
2
2
|
import { input } from '@inquirer/prompts'
|
|
3
3
|
|
|
4
4
|
export async function collectTelegram() {
|
|
5
|
-
console.log(chalk.bold(' Step 3 of 3
|
|
5
|
+
console.log(chalk.bold(' Step 3 of 3: Telegram'))
|
|
6
6
|
console.log()
|
|
7
7
|
console.log(chalk.dim(' Open Telegram and message: ') + chalk.cyan('@agentreadybot'))
|
|
8
8
|
console.log()
|
|
@@ -2,7 +2,7 @@ import chalk from 'chalk'
|
|
|
2
2
|
import { input, password, confirm } from '@inquirer/prompts'
|
|
3
3
|
|
|
4
4
|
export async function collectTrello() {
|
|
5
|
-
console.log(chalk.bold(' Step 1 of 3
|
|
5
|
+
console.log(chalk.bold(' Step 1 of 3: Trello'))
|
|
6
6
|
console.log()
|
|
7
7
|
console.log(
|
|
8
8
|
chalk.dim(' 1. Go to: ') +
|
package/src/steps/done.js
CHANGED
|
@@ -16,7 +16,7 @@ export async function done() {
|
|
|
16
16
|
)
|
|
17
17
|
console.log(chalk.dim(' 3. Claude reads the task, edits the code, opens a PR'))
|
|
18
18
|
console.log(chalk.dim(' 4. You get a Telegram message with the PR link'))
|
|
19
|
-
console.log(chalk.dim(' 5. Review and merge
|
|
19
|
+
console.log(chalk.dim(' 5. Review and merge. Nothing touches main without you'))
|
|
20
20
|
console.log()
|
|
21
21
|
console.log(chalk.dim(' Commit the generated files and push to get started:'))
|
|
22
22
|
console.log()
|
|
@@ -9,7 +9,7 @@ export async function setGithubSecrets(secrets) {
|
|
|
9
9
|
|
|
10
10
|
const useGhCli = await confirm({
|
|
11
11
|
message:
|
|
12
|
-
' Set GitHub secrets automatically? (requires GitHub CLI
|
|
12
|
+
' Set GitHub secrets automatically? (requires GitHub CLI: gh.io/cli)',
|
|
13
13
|
default: true,
|
|
14
14
|
})
|
|
15
15
|
|
package/src/steps/welcome.js
CHANGED
|
@@ -3,7 +3,7 @@ import chalk from 'chalk'
|
|
|
3
3
|
export async function welcome() {
|
|
4
4
|
console.log()
|
|
5
5
|
console.log(
|
|
6
|
-
chalk.bold(' agent-ready') + chalk.dim('
|
|
6
|
+
chalk.bold(' agent-ready') + chalk.dim(': AI coding agent for your repo'),
|
|
7
7
|
)
|
|
8
8
|
console.log()
|
|
9
9
|
console.log(
|