setup-vibeflow 0.14.0 → 0.14.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.
Files changed (2) hide show
  1. package/README.md +47 -0
  2. package/package.json +5 -1
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # setup-vibeflow
2
+
3
+ [![npm version](https://img.shields.io/npm/v/setup-vibeflow)](https://www.npmjs.com/package/setup-vibeflow)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/pe-menezes/vibeflow/blob/main/LICENSE)
5
+ [![Downloads](https://img.shields.io/npm/dw/setup-vibeflow)](https://www.npmjs.com/package/setup-vibeflow)
6
+
7
+ **Stop vibe-coding blind. Spec it, then ship it.**
8
+
9
+ Vibeflow adds a thinking layer before AI coding: you define **what** to build with specs, guardrails, and quality gates. The agent implements following your project's real patterns.
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ # Cursor
15
+ npx setup-vibeflow@latest --cursor
16
+
17
+ # GitHub Copilot
18
+ npx setup-vibeflow@latest --copilot
19
+ ```
20
+
21
+ ## What it does
22
+
23
+ The installer downloads and configures Vibeflow in your project:
24
+
25
+ - **Cursor** — skills (9 commands), rules, and project conventions
26
+ - **Copilot** — prompts (9 commands), agents, and custom instructions
27
+
28
+ After install, run `analyze` to scan your codebase, then `gen-spec` → `implement` for each feature.
29
+
30
+ ## Claude Code
31
+
32
+ Claude Code uses its own **plugin system** — no npx needed.
33
+
34
+ **Claude Desktop:**
35
+ Sidebar → Customize → **+** next to "Personal plugins" → Add marketplace → paste `pe-menezes/vibeflow-claude` → Sync → Install **Vibeflow**
36
+
37
+ **Claude Code CLI:**
38
+ ```
39
+ /plugin marketplace add pe-menezes/vibeflow-claude
40
+ /plugin install vibeflow@vibeflow-marketplace
41
+ ```
42
+
43
+ ## Links
44
+
45
+ - [vibeflow.run](https://vibeflow.run) — Website & docs
46
+ - [GitHub](https://github.com/pe-menezes/vibeflow) — Source code & full README
47
+ - [MANUAL.md](https://github.com/pe-menezes/vibeflow/blob/main/MANUAL.md) — Complete documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "setup-vibeflow",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "Install Vibeflow (spec-driven development) in your project",
5
5
  "bin": {
6
6
  "setup-vibeflow": "./index.js"
@@ -22,6 +22,10 @@
22
22
  ],
23
23
  "author": "pe-menezes",
24
24
  "license": "MIT",
25
+ "homepage": "https://vibeflow.run",
26
+ "files": [
27
+ "index.js"
28
+ ],
25
29
  "repository": {
26
30
  "type": "git",
27
31
  "url": "https://github.com/pe-menezes/vibeflow"