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
14 changes: 7 additions & 7 deletions .gaai/core/GAAI.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,18 +188,18 @@ GAAI never loads everything at once. Context is assembled on demand, in layers:

## Full Documentation

The complete documentation lives in `docs/` in the [GAAI framework repo](https://github.com/Fr-e-d/GAAI-framework):
The complete documentation lives in `docs/` in the [GAAI framework repo](https://github.com/digipulse-engineering/GAAI-framework):

→ [Quick Start](https://github.com/Fr-e-d/GAAI-framework/blob/main/docs/guides/quick-start.md) — first working Story in 30 minutes
→ [What is GAAI?](https://github.com/Fr-e-d/GAAI-framework/blob/main/docs/01-what-is-gaai.md) — the problem and the solution
→ [Core Concepts](https://github.com/Fr-e-d/GAAI-framework/blob/main/docs/02-core-concepts.md) — dual-track, agents, backlog, memory, artefacts
→ [Vibe Coder Guide](https://github.com/Fr-e-d/GAAI-framework/blob/main/docs/guides/vibe-coder-guide.md) — fast daily workflow
→ [Senior Engineer Guide](https://github.com/Fr-e-d/GAAI-framework/blob/main/docs/guides/senior-engineer-guide.md) — governance and customization
→ [Quick Start](https://github.com/digipulse-engineering/GAAI-framework/blob/main/docs/guides/quick-start.md) — first working Story in 30 minutes
→ [What is GAAI?](https://github.com/digipulse-engineering/GAAI-framework/blob/main/docs/01-what-is-gaai.md) — the problem and the solution
→ [Core Concepts](https://github.com/digipulse-engineering/GAAI-framework/blob/main/docs/02-core-concepts.md) — dual-track, agents, backlog, memory, artefacts
→ [Vibe Coder Guide](https://github.com/digipulse-engineering/GAAI-framework/blob/main/docs/guides/vibe-coder-guide.md) — fast daily workflow
→ [Senior Engineer Guide](https://github.com/digipulse-engineering/GAAI-framework/blob/main/docs/guides/senior-engineer-guide.md) — governance and customization

---

## Framework Version

See `VERSION` in this folder. The framework is maintained at [gaai-framework](https://github.com/Fr-e-d/GAAI-framework).
See `VERSION` in this folder. The framework is maintained at [gaai-framework](https://github.com/digipulse-engineering/GAAI-framework).

To check framework integrity: `bash .gaai/core/scripts/health-check.sh --core-dir .gaai/core --project-dir .gaai/project`
2 changes: 1 addition & 1 deletion .gaai/core/QUICK-REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ One-time setup: `bash .gaai/core/scripts/daemon-setup.sh`

---

> [Full documentation](https://github.com/Fr-e-d/GAAI-framework/tree/main/docs)
> [Full documentation](https://github.com/digipulse-engineering/GAAI-framework/tree/main/docs)
2 changes: 1 addition & 1 deletion .gaai/core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.51.0
2.48.0
2 changes: 1 addition & 1 deletion .gaai/core/compat/COMPAT.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To switch to a different AI tool, re-run the installer with `--tool` set explici

```bash
rm -rf /tmp/gaai
git clone https://github.com/Fr-e-d/GAAI-framework.git /tmp/gaai
git clone https://github.com/digipulse-engineering/GAAI-framework.git /tmp/gaai
bash /tmp/gaai/.gaai/core/scripts/install.sh --target /path/to/your/project --tool claude-code --yes
rm -rf /tmp/gaai
```
Expand Down
4 changes: 2 additions & 2 deletions .gaai/core/scripts/tests/licensing-terminology.test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Controlled set (exhaustive): the public repository's root README.md,
# docs/contributing/fork-and-own.md, and tracked LICENSE blob. Those files
# live in Fr-e-d/GAAI-framework, NOT in this monorepo — see PUBLIC_ROOT
# live in digipulse-engineering/GAAI-framework, NOT in this monorepo — see PUBLIC_ROOT
# resolution below. Expanding the controlled set requires a validated
# governance change, not an implicit glob.
#
Expand All @@ -29,7 +29,7 @@ fail() { echo " FAIL: $1"; FAIL_COUNT=$(( FAIL_COUNT + 1 )); }

SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Four '..' from .gaai/core/scripts/tests/ resolves to the repository root.
# In the synced public repo this is Fr-e-d/GAAI-framework's own root
# In the synced public repo this is digipulse-engineering/GAAI-framework's own root
# (correct target). In gaai-platform it resolves to this monorepo's own
# root (deliberate — public_layout_present() turns that into a pass-through
# "not applicable" result instead of a false failure or a silently-skipped
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [Unreleased]

### Changed
- fix: repoint repository identity after transfer to digipulse-engineering

## [2.51.0] - 2026-08-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Version](https://img.shields.io/badge/version-2.51.0-blue)
![Version](https://img.shields.io/badge/version-2.48.0-blue)
![License: ELv2](https://img.shields.io/badge/license-ELv2-green)
![No SDK](https://img.shields.io/badge/stack-markdown%20%2B%20yaml%20%2B%20bash-orange)

Expand Down
Loading