Skip to content
Open
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
4 changes: 1 addition & 3 deletions .claude/agents/technical-writer.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,7 @@ rtk --version

**Binary Download** (faster):
```bash
curl -sSL https://github.com/rtk-ai/rtk/releases/download/v0.16.0/rtk-linux-x86_64 -o rtk
chmod +x rtk
sudo mv rtk /usr/local/bin/
curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh
rtk --version
```

Expand Down
6 changes: 3 additions & 3 deletions .claude/skills/ship/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ gh release view v0.17.0

### 3. Installation Verification
```bash
# Test installation from release
curl -sSL https://github.com/rtk-ai/rtk/releases/download/v0.17.0/rtk-macos-latest -o rtk
chmod +x rtk
# Test installation from release (replace VERSION + ARCH as needed)
curl -sSL https://github.com/rtk-ai/rtk/releases/download/v0.17.0/rtk-aarch64-apple-darwin.tar.gz -o rtk.tar.gz
tar xzf rtk.tar.gz
./rtk --version
# Should show v0.17.0
```
Expand Down
2 changes: 1 addition & 1 deletion .rtk/filters.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project-local RTK filters β€” commit this file with your repo.
# Filters here override user-global and built-in filters.
# Docs: https://github.com/rtk-ai/rtk#custom-filters
# Docs: https://github.com/rtk-ai/rtk/blob/HEAD/src/filters/README.md
schema_version = 1

# Example: suppress build noise from a custom tool
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<p align="center">
<a href="https://www.rtk-ai.app">Website</a> &bull;
<a href="#installation">Install</a> &bull;
<a href="https://www.rtk-ai.app/guide/troubleshooting">Troubleshooting</a> &bull;
<a href="https://www.rtk-ai.app/docs/resources/troubleshooting/">Troubleshooting</a> &bull;
<a href="docs/contributing/ARCHITECTURE.md">Architecture</a> &bull;
<a href="https://discord.gg/RySmvNF5kF">Discord</a>
</p>
Expand Down Expand Up @@ -370,7 +370,7 @@ RTK supports 13 AI coding tools. Each integration rewrites shell commands to `rt
| **Kilo Code** | `rtk init --agent kilocode` | .kilocode/rules/rtk-rules.md (project-scoped) |
| **Google Antigravity** | `rtk init --agent antigravity` | .agents/rules/antigravity-rtk-rules.md (project-scoped) |

For per-agent setup details, override controls, and graceful degradation, see the [Supported Agents guide](https://www.rtk-ai.app/guide/getting-started/supported-agents). The Hermes plugin source and tests live in `hooks/hermes/`; installed Hermes runtime files still live under `~/.hermes/plugins/rtk-rewrite/`.
For per-agent setup details, override controls, and graceful degradation, see the [Supported Agents guide](https://www.rtk-ai.app/docs/getting-started/supported-agents/). The Hermes plugin source and tests live in `hooks/hermes/`; installed Hermes runtime files still live under `~/.hermes/plugins/rtk-rewrite/`.

## Configuration

Expand All @@ -392,7 +392,7 @@ FAILED: 2/15 tests
[full output: ~/.local/share/rtk/tee/1707753600_cargo_test.log]
```

For the full config reference (all sections, env vars, per-project filters), see the [Configuration guide](https://www.rtk-ai.app/guide/getting-started/configuration).
For the full config reference (all sections, env vars, per-project filters), see the [Configuration guide](https://www.rtk-ai.app/docs/getting-started/configuration/).

### Uninstall

Expand All @@ -404,7 +404,7 @@ brew uninstall rtk # If installed via Homebrew

## Documentation

- **[rtk-ai.app/guide](https://www.rtk-ai.app/guide)** β€” full user guide (installation, supported agents, what gets optimized, analytics, configuration, troubleshooting)
- **[rtk-ai.app/docs](https://www.rtk-ai.app/docs/)** β€” full user guide (installation, supported agents, what gets optimized, analytics, configuration, troubleshooting)
- **[INSTALL.md](INSTALL.md)** β€” detailed installation reference
- **[ARCHITECTURE.md](docs/contributing/ARCHITECTURE.md)** β€” system design and technical decisions
- **[CONTRIBUTING.md](CONTRIBUTING.md)** β€” contribution guide
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ See [Discover and Session](./analytics/discover.md) for details.
- [Configuration](./getting-started/configuration.md) β€” config.toml, global flags, env vars, tee recovery
- [Troubleshooting](./resources/troubleshooting.md) β€” common issues and fixes
- [Telemetry & Privacy](./resources/telemetry.md) β€” what RTK collects and how to opt out
- [ARCHITECTURE.md](https://github.com/rtk-ai/rtk/blob/master/ARCHITECTURE.md) β€” system design for contributors
- [ARCHITECTURE.md](https://github.com/rtk-ai/rtk/blob/HEAD/docs/contributing/ARCHITECTURE.md) β€” system design for contributors
6 changes: 3 additions & 3 deletions scripts/check-installation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else
echo -e " ${RED}❌ RTK is NOT installed${NC}"
echo ""
echo " Install with:"
echo " curl -fsSL https://github.com/rtk-ai/rtk/blob/master/install.sh| sh"
echo " curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh"
exit 1
fi
echo ""
Expand All @@ -45,7 +45,7 @@ else
echo ""
echo " You installed the wrong package. Fix it with:"
echo " cargo uninstall rtk"
echo " curl -fsSL https://github.com/rtk-ai/rtk/blob/master/install.sh | sh"
echo " curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh"
CORRECT_RTK=false
fi
echo ""
Expand Down Expand Up @@ -142,7 +142,7 @@ if [ ${#MISSING_FEATURES[@]} -gt 0 ]; then
echo ""
echo "To get all features, install the fork:"
echo " cargo uninstall rtk"
echo " curl -fsSL https://github.com/rtk-ai/rtk/blob/master/install.sh | sh"
echo " curl -fsSL https://raw.githubusercontent.com/rtk-ai/rtk/refs/heads/master/install.sh | sh"
echo " cd rtk && git checkout feat/all-features"
echo " cargo install --path . --force"
else
Expand Down
4 changes: 2 additions & 2 deletions src/hooks/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const RTK_SLIM_CODEX: &str = include_str!("../../hooks/codex/rtk-awareness.md");
/// Template written by `rtk init` when no filters.toml exists yet.
const FILTERS_TEMPLATE: &str = r#"# Project-local RTK filters β€” commit this file with your repo.
# Filters here override user-global and built-in filters.
# Docs: https://github.com/rtk-ai/rtk#custom-filters
# Docs: https://github.com/rtk-ai/rtk/blob/HEAD/src/filters/README.md
schema_version = 1

# Example: suppress build noise from a custom tool
Expand All @@ -45,7 +45,7 @@ schema_version = 1
/// Template for user-global filters (~/.config/rtk/filters.toml).
const FILTERS_GLOBAL_TEMPLATE: &str = r#"# User-global RTK filters β€” apply to all your projects.
# Project-local .rtk/filters.toml takes precedence over these.
# Docs: https://github.com/rtk-ai/rtk#custom-filters
# Docs: https://github.com/rtk-ai/rtk/blob/HEAD/src/filters/README.md
schema_version = 1

# Example: suppress noise from a tool you use everywhere
Expand Down