Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/core-readme-skills-sync-and-stale-monorepo-name.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@generata/core": patch
---

docs: correct stale command and monorepo references in core README
6 changes: 3 additions & 3 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Looking to expose workflows over HTTP? See [`@generata/serve`](../serve).
| `generata workflow <name>` | Run a workflow (alias: `run`) |
| `generata validate [--all]` | Static-check workflow definitions |
| `generata metrics [today\|week]` | Show metrics summary |
| `generata skills sync` | Regenerate `.claude/commands/` from workflows |
| `generata commands sync` | Regenerate `.claude/commands/` from workflows |
| `generata worktree prune` | Remove orphan `generata/wt-*` worktrees and branches |
| `generata help [topic]` | Show help (topics: agents, workflows, env, templates, bins) |

Expand Down Expand Up @@ -214,12 +214,12 @@ Every field accepted by `defineConfig` (i.e. the `GlobalConfig` schema):
- `--dry-run` - print what would be written
- `--into <subdir>` - merge into a subdirectory rather than the project root

## Development (in the ApexGen monorepo)
## Development (in the generata monorepo)

```bash
pnpm install # links the workspace
pnpm --filter @generata/core build # rebuild dist/ after engine changes
node --test --import tsx generata/src/**/*.test.ts
node --test --import tsx packages/core/src/**/*.test.ts
```

The exports map uses a `development` condition that points at `src/` so workspace dev runs through the TypeScript source via tsx; published consumers see the compiled `dist/` output.
Expand Down
Loading