Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/.env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GEMINI_API_KEY=

# URL of the deployed Cloudflare Worker (set for production builds).
# For local dev this defaults to http://localhost:8787 — no need to set it here.
GEMINI_WORKER_URL=https://worktree-gemini-proxy.northguild.workers.dev
GEMINI_WORKER_URL=https://worktree-gemini-proxy.burglekitt.workers.dev
CLOUDFLARE_API_TOKEN=
CLOUDFLARE_ACCOUNT_ID=
# optional - only needed if using the Cloudflare Worker KV store for caching (not required for basic usage, but can improve performance and reduce costs).
Expand Down
54 changes: 0 additions & 54 deletions docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,59 +9,6 @@ import "../styles/globals.css";

export { metadata } from "../lib/site-meta";

function DeprecationBanner() {
return (
<div
style={{
backgroundColor: "#fff3cd",
borderBottom: "1px solid #ffc107",
color: "#856404",
padding: "0.75rem 1.5rem",
textAlign: "center",
fontWeight: 500,
fontSize: "0.95rem",
}}
>
⚠️ This package has moved to{" "}
<code
style={{
backgroundColor: "#856404",
color: "#fff",
padding: "0.15rem 0.4rem",
borderRadius: "0.25rem",
fontFamily: "monospace",
}}
>
@northguild/worktree
</code>
. Future development continues under{" "}
<code
style={{
backgroundColor: "#856404",
color: "#fff",
padding: "0.15rem 0.4rem",
borderRadius: "0.25rem",
fontFamily: "monospace",
}}
>
@northguild/worktree
</code>
. Install with:{" "}
<code
style={{
backgroundColor: "#856404",
color: "#fff",
padding: "0.15rem 0.4rem",
borderRadius: "0.25rem",
fontFamily: "monospace",
}}
>
npm install -g @northguild/worktree
</code>
</div>
);
}

export default async function RootLayout({
children,
}: {
Expand All @@ -72,7 +19,6 @@ export default async function RootLayout({
<Head />
<body>
<Chat />
<DeprecationBanner />
<Layout
themeSwitch={{
dark: "Dark",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/lib/site-meta.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Generated file. Do not edit directly.
import type { Metadata } from "next";

export const cliVersion = "1.2.7";
export const cliVersion = "1.2.8";
export const projectName = "Worktree";
export const projectDescription =
"A CLI tool for managing git worktrees with enhanced workflow features";
Expand Down
2 changes: 1 addition & 1 deletion docs/worker/wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ main = "dist/worker.js"
compatibility_date = "2026-01-01"
compatibility_flags = ["nodejs_compat"]
workers_dev = true
# Live URL: https://worktree-gemini-proxy.northguild.workers.dev
# Live URL: https://worktree-gemini-proxy.burglekitt.workers.dev

# Find your account ID: wrangler whoami OR https://dash.cloudflare.com → right sidebar.
# Uncomment and fill in before first deploy:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@northguild/worktree",
"version": "1.2.7",
"version": "1.2.8",
"description": "A CLI tool for managing git worktrees with enhanced workflow features",
"main": "./bin/run.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion skills/_artifacts/skill_tree.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Generated by skill-tree-generator
library:
name: '@northguild/worktree'
version: '1.2.7'
version: '1.2.8'
repository: 'https://github.com/northguild/worktree'
description: 'Workflow-oriented CLI that wraps git worktree commands into repeatable daily-use tasks.'
generated_from:
Expand Down
2 changes: 1 addition & 1 deletion skills/core/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: >
.env.local copying into new worktrees.
type: core
library: '@northguild/worktree'
library_version: "1.2.7"
library_version: "1.2.8"
sources:
- "northguild/worktree:README.md"
- "northguild/worktree:docs/src/app/docs/commands/branch/page.mdx"
Expand Down
Loading