rbin-task-flow 1.26.0 → 1.26.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.
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-audit
3
3
  description: Audits the full codebase against RBIN coding standards with a score table and asks which improvements to adopt. Use when the user says task-flow audit or audit coding standards for the whole project.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  ---
6
6
 
7
7
  # Task Flow — Audit
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-estimate
3
3
  description: Estimates hours for RBIN Task Flow tasks (single ID, comma-separated IDs, or all). Use when the user says task-flow estimate 1, estimate 1,2, estimate all, or time estimate for tasks.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  paths: [".task-flow/**"]
6
6
  ---
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-from-contexts
3
3
  description: Creates tasks in tasks.input.txt from files in .task-flow/contexts/ (images, PDF, text, etc.). Use when the user says task-flow from contexts, import contexts, gerar tasks dos contexts, or criar tasks a partir dos contexts.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  paths: [".task-flow/**"]
6
6
  ---
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-report
3
3
  description: Generates implementation markdown report for completed RBIN Task Flow tasks. Use when the user says task-flow report X or document completed task.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  paths: [".task-flow/**"]
6
6
  ---
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-run
3
3
  description: Executes RBIN Task Flow subtasks from tasks.json and status.json. Use when the user says task-flow run, run next X subtasks, work on task N, execute pending subtasks, implement task flow, or trabalhar nas próximas subtarefas.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  paths: [".task-flow/**"]
6
6
  ---
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-status
3
3
  description: Shows RBIN Task Flow progress from tasks.status.md. Use when the user says task-flow status, show task status, status das tasks, or ver progresso das tarefas.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  ---
6
6
 
7
7
  # Task Flow — Status
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-sync
3
3
  description: Synchronizes RBIN Task Flow tasks.input.txt with tasks.json, status.json, and tasks.status.md. Use when the user says task-flow sync, sync tasks, sincronizar tasks, or after editing tasks.input.txt.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  paths: [".task-flow/**"]
6
6
  ---
7
7
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: task-flow-validate
3
3
  description: Deep-validates RBIN Task Flow tasks against the codebase, reverts false done status, and appends missing gaps to tasks.input.txt then syncs. Use when the user says task-flow validate, validate all, validar tasks, or verificar lacunas.
4
- disable-model-invocation: true
4
+ disable-model-invocation: false
5
5
  ---
6
6
 
7
7
  # Task Flow — Validate
@@ -6,7 +6,7 @@ alwaysApply: false
6
6
 
7
7
  # task-flow: sync
8
8
 
9
- **Prefer:** `@task-flow-sync` · Skill workflow: `.claude/skills/task-flow-sync/workflow.md`
9
+ **Prefer:** `@task-flow-sync` · Skill: `.claude/skills/task-flow-sync/workflow.md` · Works with `/task-flow-sync` and `task-flow: sync`.
10
10
 
11
11
  ## 1. Read
12
12
 
@@ -87,7 +87,8 @@ task-flow-run/
87
87
  |-------|-------------------|
88
88
  | `description` | **Obrigatório para descoberta.** Terceira pessoa, WHAT + WHEN, termos `task-flow`, `run next`, `sync`, `RBIN`. Limite ~1536 caracteres na listagem. |
89
89
  | `name` | Opcional; comando `/` vem do **nome da pasta** (`task-flow-run` → `/task-flow-run`). |
90
- | `disable-model-invocation: true` | Workflows com efeito colateral: `run`, `sync`, deploy. Você dispara; Claude não “decide” sozinho. |
90
+ | `disable-model-invocation: true` | em skills pesadas de referência (`rbin-coding-standards`) evita auto-carregar standards inteiros. |
91
+ | `disable-model-invocation: false` | **`task-flow-*`** (`sync`, `run`, `validate`, …) — `/task-flow-sync` e `task-flow: sync` devem executar quando você pede. |
91
92
  | `user-invocable: false` | Conhecimento de fundo (ex.: legado) — raro no Task Flow. |
92
93
  | `allowed-tools` | Restringir ferramentas em skills sensíveis (ex.: só `Read`, `Grep` para audit read-only). |
93
94
  | `paths` | Ex.: `[".task-flow/**"]` — auto-carregar skill ao editar arquivos de task. |
@@ -98,7 +99,7 @@ task-flow-run/
98
99
  | Tipo | Exemplo Task Flow |
99
100
  |------|------------------|
100
101
  | **Referência** | `/rbin-coding-standards` sob demanda (`disable-model-invocation: true`) — checklist primeiro |
101
- | **Tarefa** | `task-flow-run`, `task-flow-sync` — passos sequenciais; use `disable-model-invocation: true` |
102
+ | **Tarefa** | `task-flow-run`, `task-flow-sync` — `disable-model-invocation: false` (usuário dispara; `/` e `task-flow:` devem funcionar) |
102
103
 
103
104
  Mantenha o corpo do `SKILL.md` **curto** (< 500 linhas). Detalhe em `workflow.md`.
104
105
 
@@ -160,7 +161,7 @@ Para Task Flow em equipe: prefira **skills de projeto** versionadas (ajuste o `.
160
161
  ---
161
162
  name: task-flow-run
162
163
  description: Executes RBIN Task Flow subtasks from tasks.json and status.json. Use when the user says task-flow run, run next X subtasks, work on task N, execute pending subtasks, or implement task flow.
163
- disable-model-invocation: true
164
+ disable-model-invocation: false
164
165
  allowed-tools: Read Write Edit Glob Grep Shell
165
166
  paths: [".task-flow/**"]
166
167
  ---
@@ -218,7 +219,8 @@ Copie o corpo longo de `.cursor/rules/task_work.mdc` para `workflow.md`.
218
219
  ### 7.4 Múltiplos agentes no mesmo repo
219
220
 
220
221
  - Use **checagem de dependência** (`run 3` só se 1–2 done) — já em `task_work.mdc`.
221
- - Skills com `disable-model-invocation: true` evitam dois Claudes disparando `sync` ao mesmo tempo sem intenção.
222
+ - Skills `task-flow-*` com `disable-model-invocation: false` `/` e linguagem natural executam o workflow.
223
+ - `rbin-coding-standards` mantém `true` para não inflar contexto sem pedido.
222
224
 
223
225
  ---
224
226
 
@@ -305,7 +307,8 @@ Ou use `AGENTS.override.md` / settings locais fora do git e commite `.claude/ski
305
307
  | Evite | Por quê |
306
308
  |-------|---------|
307
309
  | Colar `task_work.mdc` inteiro no `CLAUDE.md` | Estoura contexto fixo da sessão |
308
- | `disable-model-invocation: false` em `sync`/`run` | Claude pode executar workflow pesado sem você pedir |
310
+ | Confiar só em `/` sem ler SKILL quando Skill tool falha | Use `task-flow: sync` + leia `workflow.md` nunca diga que sync é "só manual" |
311
+ | `disable-model-invocation: true` em `sync`/`run` | Bloqueia `/task-flow-sync` no Claude Code; use `false` nos `task-flow-*` |
309
312
  | Editar `status.json` à mão | Dessincroniza `tasks.status.md` |
310
313
  | Confiar só em “continua as tasks” | Sem número ou skill, ordem fica ambígua |
311
314
  | Ignorar reinício após criar `.claude/skills/` | Skills não aparecem no `/` |
package/CLAUDE.md CHANGED
@@ -26,6 +26,15 @@
26
26
 
27
27
  Natural language `task-flow: …` works the same. Details: [.task-flow/README.md](.task-flow/README.md).
28
28
 
29
+ ## Skills vs `disable-model-invocation`
30
+
31
+ | Skill | Flag | Why |
32
+ |-------|------|-----|
33
+ | `task-flow-*` (`sync`, `run`, …) | `false` | You asked — `/task-flow-sync` and `task-flow: sync` must run the workflow |
34
+ | `rbin-coding-standards` | `true` | Heavy reference; invoke only when implementing code |
35
+
36
+ If the Skill tool ever refuses a slash command, still execute the workflow: read `.claude/skills/task-flow-*/SKILL.md` or `.cursor/rules/task-flow-*.mdc` — **never** tell the user sync/run is "only manual".
37
+
29
38
  ## Anti-patterns (save context)
30
39
 
31
40
  - Prefer **`/task-flow-run`** (or `@task-flow-run`) for executing subtasks — avoid `@task_work` plus duplicate `.cursor/rules/task_work.mdc` in the same turn.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbin-task-flow",
3
- "version": "1.26.0",
3
+ "version": "1.26.1",
4
4
  "description": "AI-powered task management for Claude and Cursor",
5
5
  "main": "index.js",
6
6
  "bin": {