replen 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 +4 -2
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# replen
|
|
2
2
|
|
|
3
|
-
One-command setup for [replen](https://replen.dev) —
|
|
3
|
+
**Smart AI Development workflows.** One-command setup for [replen](https://replen.dev) — the AI that asks *"can we do this better?"* on your codebase, every morning.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx replen
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
While your AI coding tool waits for prompts, replen reads your code against the ecosystem and surfaces drop-in libraries, ideas to port, and patterns to learn from. A proactive layer for your AI coding workflow.
|
|
10
|
+
|
|
11
|
+
The single command above:
|
|
10
12
|
1. Opens your browser to sign in / sign up at `app.replen.dev`
|
|
11
13
|
2. Captures the auth back into the terminal (browser-callback flow, like `gh auth login`)
|
|
12
14
|
3. Wires the [@replen/mcp](https://www.npmjs.com/package/@replen/mcp) server into your Claude Code / Codex config
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { runInit } from "./init.js";
|
|
3
3
|
import { setupMcp } from "./mcp-setup.js";
|
|
4
4
|
import { readConfig, configPath } from "./config.js";
|
|
5
|
-
const HELP = `replen —
|
|
5
|
+
const HELP = `replen — Smart AI Development workflows
|
|
6
6
|
|
|
7
7
|
Usage:
|
|
8
8
|
npx replen Sign up / sign in + wire MCP into Claude Code
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "replen",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Smart AI Development workflows. The AI that asks 'can we do this better?' — replen reads your codebase against the live ecosystem every morning, surfaces drop-in libraries, ideas to port, and patterns to learn from. A proactive layer for your AI coding workflow. One-command setup: opens a browser to sign in, then wires the MCP server into Claude Code / Codex.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"replen": "dist/index.js"
|