Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
42c5239
feat(thread): Implement main thread crate to unify crate exposure
bashandbone Feb 25, 2026
badc089
fix(tests): fixed failing tests and clarified language in planning docs
bashandbone Feb 25, 2026
f287cb4
fix(tests): fixed several test and typing issues
bashandbone Feb 25, 2026
1a4f08f
fix: missing re-export causing failing tests. All tests across codeba…
bashandbone Feb 25, 2026
400eb5a
fix: multiple test and typing fixes. test suite now all green.
bashandbone Feb 25, 2026
0da1c6a
chore(ci): update cargo-deny to ignore trivial dependency lockfile du…
bashandbone Feb 25, 2026
39d90b3
chore(lint): formatting and minor fixes
bashandbone Feb 25, 2026
6c1063b
chore(fmt): formatted codebase
bashandbone Feb 25, 2026
cf30a27
feat: add support for terraform, nix, and solidity; update language t…
bashandbone Feb 25, 2026
090a285
feat: add support for terraform, nix, and solidity; update language t…
bashandbone Feb 25, 2026
73ddabc
fix: fixed issue where all-features caused failures in CI due to conf…
bashandbone Feb 25, 2026
10e86ef
fix(ci): correct issue where Rust stable causes lint failures (thread…
bashandbone Feb 25, 2026
81dfb6e
fix(ci): Remove cargo license check from CI; redundant with cargo den…
bashandbone Feb 25, 2026
e2e5f1a
fix(ci): remove Semgrep-SAST check; semgrep-action is deprecated and …
bashandbone Feb 25, 2026
d660de6
─────┬────────────────────────────────────────────────────…
bashandbone Feb 25, 2026
ad8d63e
─────┬────────────────────────────────────────────────────…
bashandbone Feb 25, 2026
f1d8459
─────┬────────────────────────────────────────────────────…
bashandbone Feb 25, 2026
4a8d31c
fix(lint): fix lint warnings
bashandbone Feb 26, 2026
082bfa4
feat: replace HashMap/Set usage with RapidMap/Set across flow crate; …
bashandbone Feb 26, 2026
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: 3 additions & 3 deletions .gemini/commands/sc.help.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: MIT

description = "List all available /sc commands and their functionality"
prompt = """
prompt = '''
---
name: help
description: "List all available /sc commands and their functionality"
Expand Down Expand Up @@ -96,7 +96,7 @@ SuperClaude supports behavioral flags to enable specific execution modes and too

| Flag | Trigger | Behavior |
|------|---------|----------|
| `--delegate [auto\|files\|folders]` | >7 directories OR >50 files | Enable sub-agent parallel processing with intelligent routing |
| `--delegate [auto\\|files\\|folders]` | >7 directories OR >50 files | Enable sub-agent parallel processing with intelligent routing |
| `--concurrency [n]` | Resource optimization needs | Control max concurrent operations (range: 1-15) |
| `--loop` | Improvement keywords (polish, refine, enhance) | Enable iterative improvement cycles with validation gates |
| `--iterations [n]` | Specific improvement cycle requirements | Set improvement cycle count (range: 1-10) |
Expand Down Expand Up @@ -153,4 +153,4 @@ SuperClaude supports behavioral flags to enable specific execution modes and too

**Note:** This list is manually generated and may become outdated. If you suspect it is inaccurate, please consider regenerating it or contacting a maintainer.

"""
'''
14 changes: 14 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# repo-level .gitconfig to setup git drivers for codeweaver
[core]
attributesfile = .gitattributes
excludesfile = .gitignore
autocrlf = false
symlinks = true

[alias]
root = "rev-parse --show-toplevel"

[merge "ours"]
name = "Keep ours merge"
driver = true
4 changes: 4 additions & 0 deletions .gitconfig.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2025 Knitli Inc.
SPDX-FileContributor: Adam Poulemanos <adam@knit.li>

SPDX-License-Identifier: MIT OR Apache-2.0
5 changes: 2 additions & 3 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
paths:
.github/workflows/cla.yml:
ignore:
- 'property "is_member" is not defined in object type {}'
- >
- property "is_member" is not defined in object type {}
- |
"github.event.pull_request.title" is potentially untrusted. avoid using it directly in inline scripts. instead, pass it through an environment variable. see https://docs.github.com/en/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions for more details

24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ updates:
- version-update:semver-minor
- version-update:semver-patch
versioning-strategy: increase
directory: "/"
directory: /
schedule:
interval: daily
time: "23:00"
time: 23:00
open-pull-requests-limit: 10
commit-message:
prefix: "deps"
prefix: deps
assignees:
- codegen-sh[bot]
- copilot[bot]
reviewers:
- codegen-sh[bot]
- copilot[bot]
labels:
- "dependencies"
- dependencies
rebase-strategy: auto
- package-ecosystem: github-actions
dependency-type: all
Expand All @@ -31,17 +31,17 @@ updates:
- version-update:semver-minor
- version-update:semver-patch
versioning-strategy: increase
directory: "/.github/workflows"
directory: /.github/workflows
schedule:
interval: daily
time: "23:00"
time: 23:00
open-pull-requests-limit: 10
commit-message:
prefix: "deps"
prefix: deps
assignees:
- codegen-sh[bot]
- copilot[bot]
reviewers:
- codegen-sh[bot]
- copilot[bot]
labels:
- "dependencies"
- dependencies
rebase-strategy: auto
Loading
Loading