@byfriends/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ BYF PROPRIETARY LICENSE
2
+
3
+ Copyright (c) 2026-2027 ByronFinn
4
+
5
+ Permission is hereby granted to copy and redistribute this software in its
6
+ unmodified form, without charge. This permission does not extend to modified
7
+ versions of the software.
8
+
9
+ Local modification of this software for personal use is permitted, provided
10
+ that such modifications are not distributed to third parties.
11
+
12
+ Restrictions:
13
+ 1. You may NOT redistribute modified versions of this software.
14
+ 2. You may NOT use this software for commercial purposes.
15
+ 3. You may NOT sublicense, sell, or offer this software as a service.
16
+
17
+ This software is source-available but NOT open source. The source code is
18
+ made publicly visible for review purposes only.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ For questions about licensing, contact: https://github.com/ByronFinn/byf/issues
package/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # @byfriends/cli
2
+
3
+ > BYF (Be Your Friend) — an AI coding agent that runs in your terminal
4
+
5
+ [![npm](https://img.shields.io/npm/v/@byfriends/cli)](https://www.npmjs.com/package/@byfriends/cli) [![License](https://img.shields.io/badge/license-proprietary-blue)](LICENSE)
6
+
7
+ ## Install
8
+
9
+ ### npm (recommended)
10
+
11
+ ```sh
12
+ npm install -g @byfriends/cli
13
+ ```
14
+
15
+ Or with pnpm:
16
+
17
+ ```sh
18
+ pnpm add -g @byfriends/cli
19
+ ```
20
+
21
+ ### Quick install (macOS/Linux)
22
+
23
+ ```sh
24
+ curl -fsSL https://github.com/ByronFinn/byf/releases/latest/download/install.sh | bash
25
+ ```
26
+
27
+ ### Quick install (Windows)
28
+
29
+ ```powershell
30
+ irm https://github.com/ByronFinn/byf/releases/latest/download/install.ps1 | iex
31
+ ```
32
+
33
+ ## Quick Start
34
+
35
+ Open a project and start the interactive UI:
36
+
37
+ ```sh
38
+ cd your-project
39
+ byf
40
+ ```
41
+
42
+ You can also start with an inline prompt:
43
+
44
+ ```sh
45
+ byf "Explain the main directories in this repository"
46
+ ```
47
+
48
+ Configure your provider credentials or API key in `~/.byf/config.toml`, then start a session.
49
+
50
+ ## Key Features
51
+
52
+ - **Single-binary distribution.** Install with one command — no Node.js setup, no PATH gymnastics, no global module conflicts.
53
+ - **Blazing-fast startup.** The TUI is ready in milliseconds, so opening a session never feels heavy.
54
+ - **Polished TUI.** A carefully tuned interface designed for long, focused agent sessions.
55
+ - **Video input.** Drop a screen recording or demo clip into the chat — let the agent watch instead of typing out what's hard to describe in words.
56
+ - **AI-native MCP configuration.** Add, edit, and authenticate Model Context Protocol servers conversationally via `/mcp-config` — no hand-editing JSON.
57
+ - **Subagents for focused, parallel work.** Dispatch built-in `coder`, `explore`, and `plan` subagents in isolated context windows; the main conversation stays clean.
58
+ - **Lifecycle hooks.** Run local commands at key points — gate risky tool calls, audit decisions, fire desktop notifications, wire into your own automation.
59
+
60
+ ## Documentation
61
+
62
+ See the main repository README for documentation.
63
+
64
+ ## Repository & Issues
65
+
66
+ - Source: https://github.com/ByronFinn/byf
67
+ - Issues: https://github.com/ByronFinn/byf/issues
68
+ - Security: see SECURITY.md in the main repository
69
+
70
+ ## License
71
+
72
+ Proprietary — see [LICENSE](https://github.com/ByronFinn/byf/blob/main/LICENSE) for terms.