@bobsworkshop/cli 1.0.0 → 1.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/README.md +111 -3
- package/dist/analyse-auto-VFZGDTTQ.js +530 -0
- package/dist/analyse-results-XAVKSCF4.js +9 -0
- package/dist/bob.js +1017 -127
- package/dist/chunk-WRMNJJA6.js +1259 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
<div align="center">
|
|
3
3
|
|
|
4
4
|
# ◉ Bob's CLI
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|

|
|
15
15
|
|
|
16
|
-
[Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [The Crew](#the-crew--your-autonomous-engineering-department) · [VaultBob](#vaultbob--your-codes-permanent-memory) · [UserBob](#userbob--your-digital-twin) · [Command Center](#autonomous-command-center) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
|
|
16
|
+
[Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [The Crew](#the-crew--your-autonomous-engineering-department) · [VaultBob](#vaultbob--your-codes-permanent-memory) · [UserBob](#userbob--your-digital-twin) · [Command Center](#autonomous-command-center) · [Cross-Project References](#cross-project-references) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
@@ -48,6 +48,7 @@ Every other AI coding assistant lives in a browser, disconnected from your actua
|
|
|
48
48
|
| Encrypted cloud backup (VaultBob) | ✅ | ❌ | ❌ | ❌ |
|
|
49
49
|
| Per-file surgical restore | ✅ | ❌ | ❌ | ❌ |
|
|
50
50
|
| Full machine migration | ✅ | ❌ | ❌ | ❌ |
|
|
51
|
+
| Cross-project references | ✅ | ❌ | ❌ | ❌ |
|
|
51
52
|
|
|
52
53
|
---
|
|
53
54
|
|
|
@@ -127,6 +128,7 @@ When you first install Bob's CLI, you're greeted with a branded welcome screen:
|
|
|
127
128
|
| **SovereignLink** | Remote execution from any device |
|
|
128
129
|
| **BYOK** | Bring your own API keys |
|
|
129
130
|
| **Push** | Git stage + commit + push in one command |
|
|
131
|
+
| **Cross-Project References** | Pull in context from other org projects mid-conversation |
|
|
130
132
|
|
|
131
133
|
---
|
|
132
134
|
|
|
@@ -420,6 +422,104 @@ bob command-center --settings
|
|
|
420
422
|
|
|
421
423
|
---
|
|
422
424
|
|
|
425
|
+
## Cross-Project References
|
|
426
|
+
|
|
427
|
+
**v1.1.0 introduces Cross-Project References** — pull in context from any shared project in your organization directly inside a conversation or deep dive session. No more copy-pasting files. No more context switching. Bob sees the actual code from another project and uses it to inform his responses in real time.
|
|
428
|
+
|
|
429
|
+
Built for the moment when you're debugging a problem in one project and you know you solved something similar somewhere else — or when you want Bob to match a pattern, style, or architecture from a reference codebase.
|
|
430
|
+
|
|
431
|
+
```
|
|
432
|
+
📎 Referencing /payments-api...
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
### How It Works
|
|
436
|
+
|
|
437
|
+
Your organization's admin shares projects as named references in Bob's Workshop. Each shared project gets a custom alias and per-user access permissions. Once a project is shared, any permitted user can invoke it from the terminal by typing the alias as a slash command.
|
|
438
|
+
|
|
439
|
+
Bob receives the most semantically relevant files from the referenced project — summaries and full code content — and uses them to answer your question. He acknowledges the reference transparently so you always know where the context came from.
|
|
440
|
+
|
|
441
|
+
### Inline Reference
|
|
442
|
+
|
|
443
|
+
Type the alias directly in your message:
|
|
444
|
+
|
|
445
|
+
```bash
|
|
446
|
+
/payments-api How does the webhook retry logic work here?
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
Bob performs a vector search against the referenced project, retrieves the most relevant files, and responds with full cross-project awareness.
|
|
450
|
+
|
|
451
|
+
### Browse Available References
|
|
452
|
+
|
|
453
|
+
Type `/ref` inside any chat or deep dive session to see a numbered list of projects you have access to:
|
|
454
|
+
|
|
455
|
+
```
|
|
456
|
+
╔══════════════════════════════════════════════════════════╗
|
|
457
|
+
║ 📎 AVAILABLE REFERENCES ║
|
|
458
|
+
╠══════════════════════════════════════════════════════════╣
|
|
459
|
+
║ 1. /payments-api seedling/payments-service ║
|
|
460
|
+
║ 2. /mobile-app seedling/mobile ║
|
|
461
|
+
║ 3. /bob-workshop seedling/bobs-workshop ║
|
|
462
|
+
╠══════════════════════════════════════════════════════════╣
|
|
463
|
+
║ Enter number to select, 0 to cancel ║
|
|
464
|
+
╚══════════════════════════════════════════════════════════╝
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
Select a project by number. Choose whole project (broad vector search) or drill into a specific file.
|
|
468
|
+
|
|
469
|
+
### File-Level Reference
|
|
470
|
+
|
|
471
|
+
When you need a specific file rather than a semantic search:
|
|
472
|
+
|
|
473
|
+
```
|
|
474
|
+
/payments-api — whole project (p) or specific file (f)? f
|
|
475
|
+
Filter files (or Enter for all): webhook
|
|
476
|
+
1. src/handlers/webhook_handler.ts
|
|
477
|
+
2. src/services/webhook_retry_service.ts
|
|
478
|
+
Select file: 1
|
|
479
|
+
```
|
|
480
|
+
|
|
481
|
+
Bob reads that exact file and responds with precise, file-specific knowledge.
|
|
482
|
+
|
|
483
|
+
### Sticky Reference — Lock a Project for the Session
|
|
484
|
+
|
|
485
|
+
Pin a reference so it applies to every message automatically — no need to type the alias each time:
|
|
486
|
+
|
|
487
|
+
```bash
|
|
488
|
+
/pin
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
The prompt updates to show the active sticky:
|
|
492
|
+
|
|
493
|
+
```
|
|
494
|
+
📌 /payments-api ›
|
|
495
|
+
```
|
|
496
|
+
|
|
497
|
+
Every message you send automatically includes context from the pinned project. Toggle it off at any time:
|
|
498
|
+
|
|
499
|
+
```bash
|
|
500
|
+
/pin # toggles off if already active
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
**Deep dives have their own independent sticky reference.** Each sandbox session can reference a completely different project — two deep dives in the same conversation can point to two different codebases simultaneously.
|
|
504
|
+
|
|
505
|
+
### Reference Commands
|
|
506
|
+
|
|
507
|
+
```
|
|
508
|
+
/ref Browse available reference projects
|
|
509
|
+
/pin Toggle sticky reference on or off
|
|
510
|
+
```
|
|
511
|
+
|
|
512
|
+
### Use Cases
|
|
513
|
+
|
|
514
|
+
- **Bug cross-reference** — Solved a similar issue in another project? Reference it and Bob maps the solution to your current codebase.
|
|
515
|
+
- **Style consistency** — Want Bob to match the architecture or naming conventions from a reference project? Pin it and every response aligns.
|
|
516
|
+
- **Feature parity** — Building a feature that already exists elsewhere in your org? Reference it and Bob uses the real implementation as the baseline.
|
|
517
|
+
- **Deep dive research** — Inside a sandbox session, pin a reference project and every hypothesis Bob explores is grounded in real cross-project knowledge.
|
|
518
|
+
|
|
519
|
+
> **Cross-Project References require a Bob's Workshop organization account with shared projects configured by your admin. Platform tier required.**
|
|
520
|
+
|
|
521
|
+
---
|
|
522
|
+
|
|
423
523
|
## Commands
|
|
424
524
|
|
|
425
525
|

|
|
@@ -514,13 +614,21 @@ Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
|
|
|
514
614
|
▸ Local UserBob simulation ▸ UserBob + autonomous dispatch
|
|
515
615
|
▸ The Crew (local agents) ▸ Deep dives, forks, remote exec
|
|
516
616
|
▸ VaultBob backup & restore ▸ VaultBob + team license mgmt
|
|
517
|
-
▸ Zero cost ▸
|
|
617
|
+
▸ Zero cost ▸ Cross-project references
|
|
618
|
+
▸ Scales to enterprise
|
|
518
619
|
```
|
|
519
620
|
|
|
520
621
|
Same commands. Scale without changing tools.
|
|
521
622
|
|
|
522
623
|
---
|
|
523
624
|
|
|
625
|
+
## What's New in v1.1.0
|
|
626
|
+
|
|
627
|
+
- **Cross-Project References** — Pull in context from any shared project in your organization directly inside chat or deep dive sessions. Invoke with `/alias`, browse with `/ref`, or lock a project for the entire session with `/pin`. Each deep dive maintains its own independent sticky reference. Bob receives full file content — summaries and source code — and responds with real cross-project awareness. Organization account required.
|
|
628
|
+
- **`/ref`** — Interactive reference browser. Browse all projects your org admin has shared with you, pick by number, choose whole-project vector search or drill into a specific file.
|
|
629
|
+
- **`/pin`** — Sticky reference toggle. Lock a project for the session so every message automatically carries cross-project context without repeating the alias.
|
|
630
|
+
- **Independent deep dive references** — Each sandbox session can pin a completely different project. Two deep dives in the same conversation can reference two different codebases simultaneously.
|
|
631
|
+
|
|
524
632
|
## What's New in v1.0.0
|
|
525
633
|
|
|
526
634
|
- **The Crew™** — A fully local autonomous multi-agent orchestration system. Spawn specialized agents, set a mission, and let DirectorBob coordinate the team. Dependency-aware parallel execution, operation type classification (CREATE / PATCH / REFACTOR / REPLACE), satisfaction scoring, stagnation escalation, and automatic backup on every file write.
|