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
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ abap-ast (zero deps, typed AST + printer for ABAP source)
openai-codegen ──► abap-ast (OpenAPI → ABAP client codegen)
```

Foundation packages (no `@abapify` deps): `ts-xsd`, `speci`, `logger`, `acds`.
Foundation packages (no `@abapify` deps): `ts-xsd`, `speci`, `logger`, `acds`, `aclass`, `abap-ast`.

## MCP ↔ CLI Coupling (intentional)

Expand Down Expand Up @@ -159,6 +159,7 @@ Each package has its own `AGENTS.md` with detailed conventions:
- [`packages/abap-ast/AGENTS.md`](packages/abap-ast/AGENTS.md) — zero-dependency AST + deterministic printer for ABAP; foundation for code generation.
- [`packages/adk/AGENTS.md`](packages/adk/AGENTS.md) — ABAP Development Kit, object CRUD, save/lock flow, ETag management
- [`packages/acds/AGENTS.md`](packages/acds/AGENTS.md) — ABAP CDS parser, tokenizer, AST types
- [`packages/aclass/AGENTS.md`](packages/aclass/AGENTS.md) — ABAP OO parser (CLAS/INTF), Chevrotain lexer + typed AST
- [`packages/adt-cli/AGENTS.md`](packages/adt-cli/AGENTS.md) — CLI commands, service pattern, client initialization
- [`packages/adt-client/AGENTS.md`](packages/adt-client/AGENTS.md) — Contract-driven REST client, schema conventions, type inference
- [`packages/adt-contracts/AGENTS.md`](packages/adt-contracts/AGENTS.md) — Contract testing framework, schema integration
Expand Down
81 changes: 46 additions & 35 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
base = "website"
command = "bun install && bun run build"
publish = "build"
# Skip the deploy entirely when nothing under `website/` or this file
# changed since the last successful build. Without this, Netlify runs
# the full build and only at the end decides "no content change" —
# which gets reported as a red `error` state + failing GitHub commit
# status. Exit 0 from this command tells Netlify to skip the deploy
# (reported as `skipped`, not `error`). Exit 1 means "proceed".
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF -- . ../netlify.toml"

[build.environment]
NODE_VERSION = "20"
Expand Down
Loading
Loading