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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# AstroParse — Code to Cosmic JSON 🚀

[![License: MIT](https://img.shields.io/badge/License-MIT-purple.svg)](https://opensource.org/licenses/MIT)
[![Docker Image](https://img.shields.io/docker/pulls/silvesterhsu/astroparse.svg)](https://hub.docker.com/r/silvesterhsu/astroparse)

**Turn C++ code into LLM-digestible JSON – because AI deserves X-ray vision for code!**
Powered by Clang AST dissection, Bazel/Docker industrial pipelines, and JSON that pleases both machines and humans.
Expand Down Expand Up @@ -43,7 +44,7 @@ Enter the build env

Build the code
``` bash
./build.sh
./scripts/build.sh
```

------
Expand Down Expand Up @@ -97,7 +98,7 @@ public:

1. **Fork This Repo**: Clone your personal universe branch
2. **Code Style**: Follow `.clang-format` – follow Google style
3. **Tests**: All PRs must survive `bazel test //...`
3. **Tests**: All PRs must pass `./scripts/test.sh`

------

Expand All @@ -108,4 +109,5 @@ public:
------

**Crafted with ❤️ and Clang by Seel.Xu**

*“Any sufficiently advanced code parser is indistinguishable from magic.”* – Arthur C. Clarke (remixed)
7 changes: 7 additions & 0 deletions scripts/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

set -e

# Bazel test

bazel test $(bazel query //...) --action_env=LIBRARY_PATH=$LIBRARY_PATH --nocache_test_results