@uge/payo 0.1.7 → 0.3.0
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 +64 -1
- package/dist/index.js +84 -81
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<img src="https://raw.githubusercontent.com/uttam-gelot/payo/main/assets/logo.png" alt="Payo" width="200" />
|
|
4
4
|
|
|
5
|
-
**Generate project-tailored AI assistant rules & skills in
|
|
5
|
+
**Generate project-tailored AI assistant rules & skills in minutes.**
|
|
6
6
|
|
|
7
7
|
Payo interviews you about your stack, then writes the guidance files your AI
|
|
8
8
|
coding assistant reads — so Claude, Cursor, Copilot, and friends follow _your_
|
|
@@ -24,6 +24,7 @@ project's conventions instead of guessing.
|
|
|
24
24
|
## Contents
|
|
25
25
|
|
|
26
26
|
- [What is Payo?](#what-is-payo)
|
|
27
|
+
- [Why Payo?](#why-payo)
|
|
27
28
|
- [Who is this for?](#who-is-this-for)
|
|
28
29
|
- [Quick Start](#quick-start)
|
|
29
30
|
- [How to use — a walkthrough](#how-to-use--a-walkthrough)
|
|
@@ -32,6 +33,7 @@ project's conventions instead of guessing.
|
|
|
32
33
|
- [AI vs. template generation](#ai-vs-template-generation)
|
|
33
34
|
- [Bootstrap prompt](#bootstrap-prompt)
|
|
34
35
|
- [Resume anytime](#resume-anytime)
|
|
36
|
+
- [Roadmap](#roadmap)
|
|
35
37
|
- [Requirements](#requirements)
|
|
36
38
|
- [Run locally](#run-locally)
|
|
37
39
|
- [Contributing](#contributing)
|
|
@@ -49,6 +51,38 @@ Where the assistant ships a headless CLI, Payo drives that tool's own AI to
|
|
|
49
51
|
write rich, project-specific docs; where it doesn't, Payo falls back to solid
|
|
50
52
|
templates — so you always end up with usable output.
|
|
51
53
|
|
|
54
|
+
## Why Payo?
|
|
55
|
+
|
|
56
|
+
Every AI coding session starts cold. Your assistant doesn't know you use Drizzle
|
|
57
|
+
over Prisma, that handlers live in `src/routes`, that you write Vitest specs
|
|
58
|
+
beside the file, or that commits follow Conventional Commits. So you re-explain
|
|
59
|
+
it — in chat after chat — and still get code that ignores half of it.
|
|
60
|
+
|
|
61
|
+
The fix is the guidance files each tool already reads (`CLAUDE.md`,
|
|
62
|
+
`.cursorrules`, `.github/copilot-instructions.md`, `AGENTS.md`). But writing them
|
|
63
|
+
by hand is tedious, easy to get wrong, and different for every tool. Most people
|
|
64
|
+
never do it, or do it once and let it rot.
|
|
65
|
+
|
|
66
|
+
Payo writes them for you in minutes — tailored to your actual stack,
|
|
67
|
+
in each tool's native format — so your assistant follows _your_ conventions from
|
|
68
|
+
the first prompt instead of guessing.
|
|
69
|
+
|
|
70
|
+
### Vibe coding, without the mess
|
|
71
|
+
|
|
72
|
+
Vibe coding is fast and fun — you prompt, the AI improvises, code appears. The
|
|
73
|
+
problem isn't the speed, it's that the assistant has no rules to improvise
|
|
74
|
+
_within_. So it guesses: a different ORM than the rest of the repo, files
|
|
75
|
+
scattered wherever, its own naming, your tests and commit conventions skipped.
|
|
76
|
+
Fine for a throwaway demo; on a real codebase it quietly piles up inconsistency
|
|
77
|
+
you pay for later in reviews, bugs, and refactors — and each new chat starts the
|
|
78
|
+
guessing over.
|
|
79
|
+
|
|
80
|
+
Payo gives that improvisation a guardrail. It generates the guidance files your
|
|
81
|
+
assistant already reads, so the AI reaches for _your_ framework, _your_ folder
|
|
82
|
+
layout, _your_ testing and git rules every time — without you stopping to explain
|
|
83
|
+
them. You keep vibe coding at full speed; the output just fits the project
|
|
84
|
+
instead of fighting it.
|
|
85
|
+
|
|
52
86
|
## Who is this for?
|
|
53
87
|
|
|
54
88
|
- **Devs starting a new repo** who want their AI assistant productive from
|
|
@@ -150,6 +184,14 @@ A few environment variables tune AI generation:
|
|
|
150
184
|
| `PAYO_RETRIES` | `1` | Extra attempts after a failed run |
|
|
151
185
|
| `PAYO_AGENT_TIMEOUT_MS` | `120000` | Wall-clock cap per file (ms) |
|
|
152
186
|
|
|
187
|
+
### Your data stays yours
|
|
188
|
+
|
|
189
|
+
Payo has no backend and no telemetry. Rich generation runs entirely through the
|
|
190
|
+
AI CLI **you** already have installed (`claude`, `cursor-agent`, etc.), so your
|
|
191
|
+
answers go only to that tool under your own account and credentials — exactly as
|
|
192
|
+
if you'd prompted it yourself. Payo itself sends nothing to any server; without a
|
|
193
|
+
CLI present it never leaves your machine at all, falling back to local templates.
|
|
194
|
+
|
|
153
195
|
## Bootstrap prompt
|
|
154
196
|
|
|
155
197
|
An empty repo with great guidance is still an empty repo. After generating, Payo
|
|
@@ -164,6 +206,27 @@ Interrupt a run and pick up where you left off. Payo saves your questionnaire
|
|
|
164
206
|
answers and generation progress under `.payo/`; rerun and it resumes, only
|
|
165
207
|
generating what's missing. Finished runs clean the directory up automatically.
|
|
166
208
|
|
|
209
|
+
## Roadmap
|
|
210
|
+
|
|
211
|
+
Payo works today, but it's still early. Here's where it's headed:
|
|
212
|
+
|
|
213
|
+
- **First-class existing-project support.** Right now Payo shines on a fresh
|
|
214
|
+
repo. The next big step is making it just as good on an established codebase:
|
|
215
|
+
**detect** the stack from what's already there (manifests, lockfiles, config,
|
|
216
|
+
folder layout), **auto-answer** the questionnaire from that evidence, and let
|
|
217
|
+
you confirm or tweak instead of typing it all out — then the normal generation
|
|
218
|
+
flow continues.
|
|
219
|
+
- **Broader stack coverage.** More languages, frameworks, ORMs, databases, and
|
|
220
|
+
AI tools, plus deeper, more opinionated defaults for the ones already
|
|
221
|
+
supported — so the guidance fits more of the ecosystem out of the box.
|
|
222
|
+
- **A smoother flow.** Faster, clearer prompts; better defaults and grouping;
|
|
223
|
+
tighter summaries and confirmations; and a generation step that's quicker and
|
|
224
|
+
more transparent about what it's doing.
|
|
225
|
+
|
|
226
|
+
Have a stack you want supported or an idea to make the flow better?
|
|
227
|
+
[Open an issue](https://github.com/uttam-gelot/payo/issues) or see
|
|
228
|
+
[Contributing](#contributing).
|
|
229
|
+
|
|
167
230
|
## Requirements
|
|
168
231
|
|
|
169
232
|
**To run Payo:** [Node.js](https://nodejs.org) **>= 18**. That's it — `npx @uge/payo`
|