Skip to content

Commit cdbccc4

Browse files
DavidsonGomesclaude
andcommitted
release: v0.11.3 — fix stale folder references in docs
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5394972 commit cdbccc4

10 files changed

Lines changed: 21 additions & 12 deletions

File tree

.claude/commands/status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Quick workspace status check. Run these steps:
33
1. Run `git status` to show working tree state
44
2. Run `git log --oneline -5` to show recent commits
55
3. Check for recent ADW logs: `ls -lt ADWs/logs/ 2>/dev/null | head -10`
6-
4. Check today's daily log if it exists: `ls "01 Daily Logs/" 2>/dev/null | grep "$(date +%Y-%m-%d)" | head -5`
6+
4. Check today's daily log if it exists: `ls "workspace/daily-logs/" 2>/dev/null | grep "$(date +%Y-%m-%d)" | head -5`
77

88
Present a concise summary with:
99
- Git state (branch, pending changes)

.claude/skills/ops-vendor-review/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Se **Notion MCP** estiver conectado:
114114

115115
Se o workflow de contratação for manual:
116116
- Gerar checklist de aprovação para compartilhar com Davidson e Samara (financeiro)
117-
- Documentar resultado da avaliação em arquivo local em `02 Projects/`
117+
- Documentar resultado da avaliação em arquivo local em `workspace/projects/`
118118

119119
## Dicas
120120

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ Thumbs.db
7979
CLAUDE.md
8080
config/workspace.yaml
8181
config/routines.yaml
82+
config/triggers.yaml
8283

8384
# ── Claude Code session data ─────────────
8485
.claude/projects/

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.11.3] - 2026-04-09
9+
10+
### Fixed
11+
- **Stale folder references in docs** — replaced legacy Obsidian-style paths (`01 Daily Logs/`, `02 Projects/`, `05 Financeiro/`, `09 Estrategia/`) with new `workspace/` structure (`workspace/daily-logs/`, `workspace/projects/`, `workspace/finance/`, `workspace/strategy/`) in `CLAUDE.md`, status command, creating-skills/routines/updating guides, ops-vendor-review skill, and `llms-full.txt`.
12+
13+
### Changed
14+
- **`.gitignore`** — added `config/triggers.yaml` to gitignored configs.
15+
816
## [0.11.2] - 2026-04-09
917

1018
### Added

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evoapi/evo-nexus",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "Unofficial open source toolkit for Claude Code — AI-powered business operating system",
55
"keywords": [
66
"claude-code",

docs/guides/creating-routines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ make run R=competitor-check
100100
| Custom routine scripts | `ADWs/routines/custom/` |
101101
| Core routine scripts | `ADWs/routines/` |
102102
| Routine config | `config/routines.yaml` |
103-
| Generated reports | Varies by agent (e.g., `09 Estrategia/`, `05 Financeiro/`) |
103+
| Generated reports | Varies by agent (e.g., `workspace/strategy/`, `workspace/finance/`) |
104104

105105
## Testing
106106

docs/guides/creating-skills.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ description: Generate a weekly team status report from Linear, GitHub, and meeti
5252
## Output
5353

5454
Generate an HTML report using the Evolution brand template.
55-
Save to `01 Daily Logs/` with filename `[C] Team Report YYYY-MM-DD.html`.
55+
Save to `workspace/daily-logs/` with filename `[C] Team Report YYYY-MM-DD.html`.
5656

5757
## Rules
5858

@@ -114,7 +114,7 @@ Consolidate data from all domains into a single weekly summary.
114114

115115
## Output
116116

117-
HTML report saved to `01 Daily Logs/`.
117+
HTML report saved to `workspace/daily-logs/`.
118118
```
119119

120120
3. Test it — just describe the task:

docs/guides/updating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Your custom routines (`ADWs/scripts/`), skills (`.claude/skills/`), and workspac
6161
- `dashboard/data/` (database, secrets)
6262
- `config/workspace.yaml`
6363
- `memory/` directory contents
64-
- Session logs in `01 Daily Logs/`
64+
- Session logs in `workspace/daily-logs/`
6565

6666
If you've modified a tracked file, `git pull` may show a merge conflict. In that case, stash your changes first:
6767

docs/llms-full.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2636,7 +2636,7 @@ make run R=competitor-check
26362636
| Custom routine scripts | `ADWs/routines/custom/` |
26372637
| Core routine scripts | `ADWs/routines/` |
26382638
| Routine config | `config/routines.yaml` |
2639-
| Generated reports | Varies by agent (e.g., `09 Estrategia/`, `05 Financeiro/`) |
2639+
| Generated reports | Varies by agent (e.g., `workspace/strategy/`, `workspace/finance/`) |
26402640

26412641
## Testing
26422642

@@ -2721,7 +2721,7 @@ description: Generate a weekly team status report from Linear, GitHub, and meeti
27212721
## Output
27222722

27232723
Generate an HTML report using the Evolution brand template.
2724-
Save to `01 Daily Logs/` with filename `[C] Team Report YYYY-MM-DD.html`.
2724+
Save to `workspace/daily-logs/` with filename `[C] Team Report YYYY-MM-DD.html`.
27252725

27262726
## Rules
27272727

@@ -2783,7 +2783,7 @@ Consolidate data from all domains into a single weekly summary.
27832783

27842784
## Output
27852785

2786-
HTML report saved to `01 Daily Logs/`.
2786+
HTML report saved to `workspace/daily-logs/`.
27872787
```
27882788

27892789
3. Test it — just describe the task:
@@ -3148,7 +3148,7 @@ Your custom routines (`ADWs/scripts/`), skills (`.claude/skills/`), and workspac
31483148
- `dashboard/data/` (database, secrets)
31493149
- `config/workspace.yaml`
31503150
- `memory/` directory contents
3151-
- Session logs in `01 Daily Logs/`
3151+
- Session logs in `workspace/daily-logs/`
31523152

31533153
If you've modified a tracked file, `git pull` may show a merge conflict. In that case, stash your changes first:
31543154

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "evo-nexus"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
description = "Unofficial open source toolkit for Claude Code — AI-powered business operating system"
55
requires-python = ">=3.10"
66
dependencies = [

0 commit comments

Comments
 (0)