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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
- name: Test aingle_minimal with all transports
run: cargo test -p aingle_minimal --features "sqlite,coap,quic,webrtc,rest"

# Note: Other crates (aingle_graph, hope_agents, titans_memory, etc.)
# Note: Other crates (aingle_graph, kaneru, ineru, etc.)
# will be added to CI once they pass all checks independently

# Security audit for dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ jobs:
run: cargo publish -p aingle_zk --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
continue-on-error: true

- name: Publish titans_memory
run: cargo publish -p titans_memory --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish ineru
run: cargo publish -p ineru --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
continue-on-error: true

- name: Publish aingle_ai
Expand All @@ -203,8 +203,8 @@ jobs:
run: cargo publish -p aingle_logic --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
continue-on-error: true

- name: Publish hope_agents
run: cargo publish -p hope_agents --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish kaneru
run: cargo publish -p kaneru --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
continue-on-error: true

- name: Wait for crates.io index update
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ llm-instructions.md
# ===========================================
*.profraw
*.profdata
aingle_iot.db

# Logs
*.log
Expand Down
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2026-03-09

### Changed
- Rename `titans_memory` crate to `ineru` — Ineru neural-inspired memory system
- Rename `hope_agents` crate to `kaneru` — Kaneru multi-agent execution system
- Rename `TitansMemory` → `IneruMemory`, `TitansConfig` → `IneruConfig`
- Rename `HopeAgent` → `KaneruAgent`, `HopeConfig` → `KaneruConfig`
- Move `crate::titans` module to `crate::ineru` in `aingle_ai`
- Move `crate::hope` module to `crate::kaneru` in `aingle_ai`
- Bump all main crate versions to 0.4.0 (unified version scheme)
- Update all internal dependency version specs to match
- Standardize copyright headers and license metadata across all crates

## [0.1.0] - 2024-12-17

### Technical Requirements
Expand Down Expand Up @@ -43,9 +56,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Anonymous credentials

#### AI & Machine Learning
- `aingle_ai` - AI integration layer (Titans Memory architecture)
- `titans_memory` - Neural-inspired memory system (STM/LTM)
- `hope_agents` - HOPE Agent framework
- `aingle_ai` - AI integration layer (Ineru architecture)
- `ineru` - Ineru neural-inspired memory system (STM/LTM)
- `kaneru` - Kaneru agent framework
- Q-Learning
- DQN (Deep Q-Network)
- PPO (Proximal Policy Optimization)
Expand Down
Loading
Loading