Skip to content

Commit 0a721b5

Browse files
committed
0.0.5
1 parent 6862741 commit 0a721b5

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CEDARScript (Concise Examination, Development, And Refactoring Script)
1+
# CEDARScript
22

33
[![PyPI version](https://badge.fury.io/py/cedarscript-grammar.svg)](https://pypi.org/project/cedarscript-grammar/)
44
[![Python Versions](https://img.shields.io/pypi/pyversions/cedarscript-grammar.svg)](https://pypi.org/project/cedarscript-grammar/)
@@ -7,13 +7,20 @@
77

88
## A SQL-like language for code analysis and transformations
99

10-
`CEDARScript` is a SQL-like language designed to _concisely_:
10+
`CEDARScript` (_Concise Examination, Development, And Refactoring Script_) is a **SQL**-like language designed to _concisely_:
1111
1. **Express code manipulations and refactorings** (if you know what you want to change in your code);
1212
- The CEDARScript runtime can edit any file in the code base according to the commands it reads
1313
2. **Perform code analysis** to quickly get to know a large code base without having to read all contents of all files.
1414
- The CEDARScript runtime searches through the whole code base and only returns the desired results
1515

16-
## Usage
16+
## Projects using the CEDARScript Language
17+
18+
1. [CEDARScript AST Parser (Python)](https://github.com/CEDARScript/cedarscript-ast-parser-python)
19+
2. [CEDARScript Editor](https://github.com/CEDARScript/cedarscript-editor-python)
20+
3. [CEDARScript Prompt Engineering](https://github.com/CEDARScript/cedarscript-llm-prompt-engineering) - Provides prompts that teach `CEDARScript` to LLMs
21+
4. [CEDARScript Integrations](https://github.com/CEDARScript/cedarscript-integrations) - Provides `CEDARScript` _edit format_ for [Aider](https://aider.chat/)
22+
23+
## How can CEDARScript be used?
1724

1825
### Improving LLM <-> codebase interactions
1926

cedarscript_grammar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from tree_sitter import Language
66

7-
__version__ = "0.0.4"
7+
__version__ = "0.0.5"
88
__all__ = ("language",)
99

1010
_ROOT_DIR = Path(__file__).parent

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cedarscript_grammar"
7-
version = "0.0.4"
7+
version = "0.0.5"
88
description = "CEDARScript grammar.js for tree-sitter"
99
authors = [
1010
{name = "Elifarley", email = "cedarscript@orgecc.com"},

0 commit comments

Comments
 (0)