@uge/payo 2.1.1 → 2.1.3
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 +11 -6
- package/dist/index.js +61 -61
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -161,7 +161,8 @@ When detection finds a manifest, you get two quick choices:
|
|
|
161
161
|
**skips anything it can't find**: no skill is created for it and it isn't
|
|
162
162
|
mentioned. The only things applied without detection are a few safe assistant
|
|
163
163
|
policies (no AI attribution in commits, task-scoped atomic commits, confirm
|
|
164
|
-
before push, verify before push,
|
|
164
|
+
before push, verify before push, gitleaks secret scan before push, confirm
|
|
165
|
+
before destructive SQL / migrations, work from `.env.example`, and DRY/modular
|
|
165
166
|
coding standards) — all shown up front and editable on the review screen. You
|
|
166
167
|
land straight on that review screen and confirm once.
|
|
167
168
|
- **Just the high-level stack** fills in the stack facts only and interviews you
|
|
@@ -246,23 +247,27 @@ every skills-compatible tool regardless of that choice.
|
|
|
246
247
|
## What it asks about
|
|
247
248
|
|
|
248
249
|
Payo understands **30 frameworks, 29 ORMs, and 17 databases** across
|
|
249
|
-
**TypeScript/JavaScript, Python, Go, Rust, PHP, C#, Java, and Ruby** —
|
|
250
|
-
questions
|
|
250
|
+
**TypeScript/JavaScript, Python, Go, Rust, PHP, C#, Java, and Ruby** — backed by a
|
|
251
|
+
bank of **200+ stack-tailored questions** it draws from, asking only the handful
|
|
252
|
+
your stack needs. Dimensions covered:
|
|
251
253
|
|
|
252
254
|
- **Project** — type (frontend / backend / full-stack / CLI / script) and a short description
|
|
253
255
|
- **Language & framework** — plus framework-specific conventions
|
|
254
256
|
- **API** — REST, GraphQL, gRPC, tRPC
|
|
255
257
|
- **Frontend** — styling and state management, with provider-specific
|
|
256
258
|
conventions for Tailwind, shadcn/ui, and CSS Modules
|
|
257
|
-
- **Data** — database and ORM/data-layer, with naming & migration conventions
|
|
259
|
+
- **Data** — database and ORM/data-layer, with naming & migration conventions,
|
|
260
|
+
plus a guardrail requiring confirmation before destructive SQL or migrations
|
|
258
261
|
- **Auth** — approach, session strategy, RBAC, plus provider-specific
|
|
259
262
|
conventions for Clerk, Auth.js, Better Auth, and Supabase Auth
|
|
260
263
|
- **Validation & logging** — stack-appropriate libraries
|
|
261
264
|
- **Testing** — unit / integration / component / E2E and runners
|
|
262
265
|
- **Tooling** — package manager, runtime, formatter, linter
|
|
263
266
|
- **TypeScript** — `tsconfig` strictness, target, module resolution, path aliases
|
|
264
|
-
- **Conventions** — folder structure, coding standards, docs, git workflow,
|
|
265
|
-
branch-naming / commit-message style (inferred from local git history)
|
|
267
|
+
- **Conventions** — folder structure, coding standards, docs, git workflow,
|
|
268
|
+
branch-naming / commit-message style (inferred from local git history), and an
|
|
269
|
+
option to add a gitleaks secret-scan convention (scan for leaked secrets before
|
|
270
|
+
every push)
|
|
266
271
|
- **Change audit** _(optional)_ — opt into a skill that checks your pending
|
|
267
272
|
change against the project skills before commit or push
|
|
268
273
|
|