@fluencypassdevs/cycle 0.6.0 → 0.6.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 CHANGED
@@ -23,7 +23,7 @@ import { Button, Badge, CycleIcon } from "@fluencypassdevs/cycle"
23
23
  ## Configurar IA (Claude Code, Cursor, Copilot)
24
24
 
25
25
  ```bash
26
- npx @fluencypassdevs/cycle init
26
+ npx cycle init
27
27
  ```
28
28
 
29
29
  Esse comando:
package/bin/cli.mjs CHANGED
@@ -4,8 +4,8 @@
4
4
  * Cycle Design System — CLI Router
5
5
  *
6
6
  * Routes subcommands:
7
- * npx @fluencypassdevs/cycle init → configure AI rules + MCP
8
- * npx @fluencypassdevs/cycle mcp → start MCP server (stdio)
7
+ * npx cycle init → configure AI rules + MCP
8
+ * npx cycle mcp → start MCP server (stdio)
9
9
  */
10
10
 
11
11
  const command = process.argv[2]
@@ -20,8 +20,8 @@ if (command === "mcp") {
20
20
  console.log(" ───────────────────────")
21
21
  console.log("")
22
22
  console.log(" Commands:")
23
- console.log(" npx @fluencypassdevs/cycle init Configure AI rules + MCP server")
24
- console.log(" npx @fluencypassdevs/cycle mcp Start MCP server (stdio)")
23
+ console.log(" npx cycle init Configure AI rules + MCP server")
24
+ console.log(" npx cycle mcp Start MCP server (stdio)")
25
25
  console.log("")
26
26
  process.exit(1)
27
27
  }
package/bin/init.mjs CHANGED
@@ -95,7 +95,7 @@ const mcpConfig = {
95
95
  "cycle-design-system": {
96
96
  type: "stdio",
97
97
  command: "npx",
98
- args: ["-y", "@fluencypassdevs/cycle", "mcp"],
98
+ args: ["cycle", "mcp"],
99
99
  },
100
100
  },
101
101
  }
@@ -126,5 +126,5 @@ console.log(" Pronto! As regras do Cycle Design System foram configuradas.")
126
126
  console.log(" MCP server configurado — Claude Code vai consultar os componentes automaticamente.")
127
127
  console.log("")
128
128
  console.log(" Para atualizar apos upgrade do pacote, rode novamente:")
129
- console.log(" npx @fluencypassdevs/cycle init")
129
+ console.log(" npx cycle init")
130
130
  console.log("")
package/bin/mcp.mjs CHANGED
@@ -7,7 +7,7 @@
7
7
  * component library to AI assistants. Zero external dependencies.
8
8
  *
9
9
  * Usage (Claude Code .mcp.json):
10
- * { "mcpServers": { "cycle-design-system": { "type": "stdio", "command": "npx", "args": ["-y", "@fluencypassdevs/cycle", "mcp"] } } }
10
+ * { "mcpServers": { "cycle-design-system": { "type": "stdio", "command": "npx", "args": ["cycle", "mcp"] } } }
11
11
  */
12
12
 
13
13
  import { createInterface } from "readline"
@@ -760,7 +760,7 @@ import { cn } from "@fluencypassdevs/cycle/lib/utils"
760
760
 
761
761
  ## 6. Configurar regras para IA (opcional):
762
762
  \`\`\`bash
763
- npx @fluencypassdevs/cycle init
763
+ npx cycle init
764
764
  \`\`\``
765
765
 
766
766
  case "cycle_get_tokens": {
@@ -133,7 +133,7 @@ Se o projeto tem `.mcp.json` configurado, o Claude Code tera acesso a tools do C
133
133
 
134
134
  **USE estas tools antes de criar qualquer UI.** Elas sao a fonte de verdade.
135
135
 
136
- Para configurar: `npx @fluencypassdevs/cycle init`
136
+ Para configurar: `npx cycle init`
137
137
 
138
138
  ## Documentacao
139
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluencypassdevs/cycle",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Cycle Design System — UI component library by Fluencypass",
5
5
  "license": "MIT",
6
6
  "repository": {