UnforGBeast

Thelink — Development skill for Claude Code

Development community

TheLink is a harness between two most powerful which every developer should have.

How to install Thelink

This entry records only its repository, not the path inside it, so there is no exact command to give. Open UnforGBeast/thelink and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Thelink does

TheLink is a harness between two most powerful which every developer should have. It combines the Temporal Memory and the spatial memory, so your agent always knows where the particular file and from where we ahve to begin. Its cross agentic means the context is shared between your cursor, codex, claude etc.

Alternatives in Development

  • Claudia — A powerful GUI app and Toolkit for Claude Code - Create custom agents, manage interactive Claude Code sessions 21k ★
  • Lamda — The most powerful Android RPA agent framework, next generation mobile automation 7.7k ★
  • Lazycodex — The one and only agent harness for complex codebases 3.3k ★

README

The Link — Unified Context Engine

Zero-shot context injection for AI coding assistants. Fuses **EGC session memory** (what you decided) with **GrapeRoot's semantic graph** (where the code lives) into a single, token-optimised payload — ready for any AI coding assistant.


Install in one command

No manual setup. No separate EGC or GrapeRoot installs. Everything is fetched automatically.

macOS / Linux

curl -fsSL https://raw.githubusercontent.com/UnforGBeast/thelink/main/install.sh | bash

Windows (PowerShell)

irm https://raw.githubusercontent.com/UnforGBeast/thelink/main/install.ps1 | iex

**Note:** the Windows command uses `install.ps1` — a native PowerShell script. Do **not** pipe the `.sh` file into `iex`; PowerShell cannot execute bash syntax.

That's it. A global `link` command is now available in every terminal.


Usage

link ""
# Minimal — runs against your current directory
link "Update the authentication middleware"

# Target a specific project
link "Refactor the payment module" --project /path/to/project

# Increase context size (default: 10 files)
link "Fix the login bug" --top-n 20 --verbose

# Pipe directly into Bob's rules file for the current session
link "Update the auth middleware" > .bob/rules/00-context.md

# Pipe into clipboard (macOS)
link "Fix the login bug" | pbcopy

# Pipe into clipboard (Windows)
link "Fix the login bug" | Set-Clipboard

Flags

Flag Default Description
--project, -p current directory Path to the target repository
--top-n, -n 10 Number of relevant files to include
--graph-out /.dual-graph/info_graph.json Where to write the semantic graph
--verbose, -v off Show pipeline steps on stderr
--version — Print version and exit

Output format

The Link writes a structured payload to **stdout**:

[PROJECT HISTOR