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
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y jq

- name: Run tests
run: bash tests/test-graphify.sh

shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: ShellCheck core scripts
run: |
sudo apt-get update && sudo apt-get install -y shellcheck
shellcheck core/*.sh bin/*.sh || true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
graphify-out/
system-graph/
*.pyc
__pycache__/
.env
node_modules/
.last_build
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

## [1.0.0] - 2026-08-02

### Added

- **Standalone core** (`core/graphify-core.sh`): Build knowledge graphs without any external dependencies. Supports TypeScript, JavaScript, Python, Go, Bash, SQL, Markdown, and more.
- **Query engine** (`core/graphify-query.sh`): Search, shortest path, impact analysis, god-nodes, neighbors, and statistics — all from the terminal.
- **Test suite**: 31 tests covering graph building, querying, impact analysis, multi-repo merge, and error handling.
- **GitHub Actions CI**: Automated testing on push and PR.
- **Sample project**: Working TypeScript + Markdown example with pre-built graph output.
- **CI integration example**: Pre-commit hook that warns about high-impact changes.
- Incremental builds via `--update` flag (uses git diff).
- Community detection (connected components).
- Compact output format via `--format compact`.

### Changed

- Graphify Toolkit is now **fully standalone** — no external `graphify` package or API key required.
- The `graphify` Python package is optional for semantic enrichment.
- Updated README with comprehensive documentation, real query examples, and comparison table.

## [0.1.0] - 2026-07-25

### Added

- Initial release with multi-repo orchestration scripts.
- `graphify-build.sh`: Multi-repo graph builder.
- `graphify-merge.sh`: Cross-repo graph merger with automatic edge detection.
- `graphify-impact.sh`: Impact analysis with configurable depth.
- `graphify-query-all.sh`: Cross-repo querying.
- `graphify-auto-rebuild.sh`: Incremental rebuild with lockfile protection.
- Claude Code skill for interactive graph exploration.
Loading
Loading