Skip to content
Closed
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
56 changes: 56 additions & 0 deletions .claude/memories/project_memory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"memories": [],
"manual_memories": [],
"realtime_memories": [
{
"type": "claude_response",
"content": "**Fixed.** All active MegaLogic references renamed to LaserLogic:\n\n| File | Status |\n|------|--------|\n| `~/.claude/commands/rk-logic.md` | ✅ Fixed |\n| `~/.claude/commands/rk-help.md` | ✅ Fixed |\n| `~",
"added_at": "2026-01-03T00:45:09.992082",
"source": "realtime_capture"
},
{
"type": "message",
"content": "Are these Claude Code (`claude`) commands a default part of the installation right now?",
"added_at": "2026-01-03T00:45:09.992160",
"source": "realtime_capture"
},
{
"type": "claude_response",
"content": "No. The `/rk-*` commands are **custom commands you created** - they're stored in your personal `~/.claude/commands/` directory.\n\n**Default Claude Code commands** (built-in):\n- `/help` - Show help\n- `/",
"added_at": "2026-01-03T00:47:38.305560",
"source": "realtime_capture"
},
{
"type": "message",
"content": "Yes, but are they installed as soon as someone would install ReasonKit right now? How is this for via `cargo` and how for via the one-liner install (curl + bash)?",
"added_at": "2026-01-03T00:47:38.305614",
"source": "realtime_capture"
},
{
"type": "claude_response",
"content": "Looking at the install script (`reasonkit-site/install.sh`):\n\n**Current state:**\n\n| Method | Claude Commands Installed? |\n|--------|---------------------------|\n| `cargo install reasonkit` | ❌ None |\n",
"added_at": "2026-01-03T00:57:39.869252",
"source": "realtime_capture"
},
{
"type": "message",
"content": "curl -fsSL https://reasonkit.sh/install | bash - Let me check if this script exists and what it does: --> It should be the same as the website: 'curl -fsSL https://get.reasonkit.sh | bash' --- - Is it",
"added_at": "2026-01-03T00:57:39.869315",
"source": "realtime_capture"
},
{
"type": "claude_response",
"content": "## Summary: ReasonKit Installation System Overhaul Complete ✅\n\n### Completed Tasks\n\n**1. Install Script v2.0.0 - Complete Overhaul** (`reasonkit-site/install.sh` & `install`)\n- Interactive by default ",
"added_at": "2026-01-03T01:33:48.525007",
"source": "realtime_capture"
},
{
"type": "message",
"content": "``` 4. UV Mandate Enforcement (CONS-010) - Fixed: docs/guides/INTEGRATION.md - pip → uv pip - Fixed: docs/reference/API_REFERENCE.md - pip → uv pip - Fixed: docs/getting-started/INSTALLATION_TROUBLESH",
"added_at": "2026-01-03T01:33:48.525108",
"source": "realtime_capture"
}
],
"created_at": "2026-01-03T00:45:09.744834",
"updated_at": "2026-01-03T01:33:48.525111"
}
6 changes: 3 additions & 3 deletions .github/GOOD_FIRST_ISSUES.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ Make CLI help text more descriptive and include examples.
.long_about(
"Execute a ThinkTool protocol to analyze a query with structured reasoning.\n\n\
Examples:\n\
rk-core think \"Should I take this job?\" --profile balanced\n\
rk-core think \"Is this email a phishing attempt?\" --profile quick"
rk think \"Should I take this job?\" --profile balanced\n\
rk think \"Is this email a phishing attempt?\" --profile quick"
)
```

Expand Down Expand Up @@ -380,7 +380,7 @@ set -euo pipefail

echo "Running ReasonKit analysis..."

rk-core think \
rk think \
"Your question here" \
--profile balanced \
--output json > result.json
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ cargo bench --bench retrieval_bench

| Platform | Target | Binary Name |
| -------------------- | --------------------------- | ---------------------------------- |
| Linux x86_64 (glibc) | `x86_64-unknown-linux-gnu` | `rk-core-linux-x86_64.tar.gz` |
| Linux x86_64 (musl) | `x86_64-unknown-linux-musl` | `rk-core-linux-x86_64-musl.tar.gz` |
| Linux ARM64 | `aarch64-unknown-linux-gnu` | `rk-core-linux-aarch64.tar.gz` |
| macOS x86_64 | `x86_64-apple-darwin` | `rk-core-macos-x86_64.tar.gz` |
| macOS ARM64 | `aarch64-apple-darwin` | `rk-core-macos-aarch64.tar.gz` |
| Windows x86_64 | `x86_64-pc-windows-msvc` | `rk-core-windows-x86_64.exe.zip` |
| Linux x86_64 (glibc) | `x86_64-unknown-linux-gnu` | `rk-linux-x86_64.tar.gz` |
| Linux x86_64 (musl) | `x86_64-unknown-linux-musl` | `rk-linux-x86_64-musl.tar.gz` |
| Linux ARM64 | `aarch64-unknown-linux-gnu` | `rk-linux-aarch64.tar.gz` |
| macOS x86_64 | `x86_64-apple-darwin` | `rk-macos-x86_64.tar.gz` |
| macOS ARM64 | `aarch64-apple-darwin` | `rk-macos-aarch64.tar.gz` |
| Windows x86_64 | `x86_64-pc-windows-msvc` | `rk-windows-x86_64.exe.zip` |

### Release Process

Expand Down
42 changes: 26 additions & 16 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ jobs:
contains(github.event.pull_request.labels.*.name, 'performance')

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561 # stable
with:
toolchain: stable

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -96,7 +98,7 @@ jobs:
continue-on-error: true

- name: Store benchmark results
uses: benchmark-action/github-action-benchmark@v1
uses: benchmark-action/github-action-benchmark@4bdcce38c94cec68da58d012ac24b7b1155efe8b # v1.20.7
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
tool: "cargo"
Expand All @@ -110,7 +112,7 @@ jobs:
continue-on-error: true

- name: Upload Criterion plots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: criterion-plots
path: target/criterion/
Expand All @@ -124,13 +126,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561 # stable
with:
toolchain: stable

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -159,7 +163,7 @@ jobs:
echo "$BINARY_SIZE_BYTES" > binary_size.txt

- name: Upload binary size
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: binary-size
path: binary_size.txt
Expand All @@ -172,10 +176,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561 # stable
with:
toolchain: stable

- name: Clean build
run: cargo clean
Expand Down Expand Up @@ -217,10 +223,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561 # stable
with:
toolchain: stable

- name: Install cargo-tree
run: cargo install cargo-tree || true
Expand Down Expand Up @@ -259,10 +267,12 @@ jobs:
if: github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'profiling')

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@f7ccc83f9ed1e5b9c81d8a67d7ad1a747e22a561 # stable
with:
toolchain: stable

- name: Install flamegraph
run: cargo install flamegraph
Expand All @@ -276,7 +286,7 @@ jobs:
continue-on-error: true

- name: Upload flamegraph
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: flamegraph
path: flamegraph.svg
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/brand-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
asset_archive: ${{ steps.package.outputs.archive }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0 # Full history for change detection

Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Upload artifact
if: steps.changes.outputs.brand == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: brand-assets-${{ steps.version.outputs.version }}
path: |
Expand Down
Loading
Loading