Skip to content

Commit 85c8539

Browse files
committed
Update README with badges, real URLs and project structure
- Add release, license and skills.sh badges - Replace <owner> placeholders with faugustdev - Add .gitignore to project structure tree
1 parent 71c52f6 commit 85c8539

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Git Context Controller (GCC)
22

3+
[![Release](https://img.shields.io/github/v/release/faugustdev/git-context-controller)](https://github.com/faugustdev/git-context-controller/releases/tag/v1.0.0)
4+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5+
[![Skills.sh](https://img.shields.io/badge/skills.sh-compatible-blue)](https://skills.sh)
6+
37
**Structured context management framework for LLM agents.**
48

59
GCC implements Git-like operations (COMMIT, BRANCH, MERGE, CONTEXT) to manage long-horizon agent memory as a persistent, versioned file system.
@@ -98,18 +102,16 @@ Agents operate through **Observation-Thought-Action** cycles, logged in real tim
98102

99103
```bash
100104
# Via skills.sh
101-
npx skills add <owner>/git-context-controller
105+
npx skills add faugustdev/git-context-controller
102106

103107
# Manual installation
104-
# Copy the skill to your project's .claude/skills/ directory
105108
cp -r gcc/ your-project/.claude/skills/gcc/
106109
```
107110

108111
### Standalone
109112

110113
```bash
111-
# Clone the repository
112-
git clone https://github.com/<owner>/git-context-controller.git
114+
git clone https://github.com/faugustdev/git-context-controller.git
113115

114116
# Initialize GCC in your project
115117
./scripts/gcc_init.sh /path/to/your/project/.GCC
@@ -219,6 +221,7 @@ git-context-controller/
219221
├── README.md # This file
220222
├── LICENSE # MIT License
221223
├── CONTRIBUTING.md # Contribution guidelines
224+
├── .gitignore # Excludes .GCC/ and local files
222225
├── scripts/
223226
│ └── gcc_init.sh # Initialization script
224227
├── references/

0 commit comments

Comments
 (0)