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 __tests__/components/reach-developers.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe("ReachDevelopers", () => {
const btn = screen.getAllByRole("button")[0];
await user.click(btn);
const menuItems = screen.getAllByRole("menuitem");
expect(menuItems).toHaveLength(3);
expect(menuItems).toHaveLength(5);
});

it("Escape key closes dropdown", async () => {
Expand Down
4 changes: 4 additions & 0 deletions bin/failproofai.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ EXAMPLES
failproofai --remove-policies block-sudo
failproofai --remove-policies --custom
failproofai --list-policies

LINKS
⭐ Star us: https://github.com/exospherehost/failproofai
πŸ“– Docs: https://befailproof.ai
`.trimStart());
process.exit(0);
}
Expand Down
12 changes: 11 additions & 1 deletion components/reach-developers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@
"use client";

import React, { useState, useCallback } from "react";
import { GitBranch, Lightbulb, Bug, MessageSquare, ChevronDown } from "lucide-react";
import { GitBranch, Lightbulb, Bug, MessageSquare, ChevronDown, Star, BookOpen } from "lucide-react";
import { Button } from "@/components/ui/button";

const GITHUB_REPO = "https://github.com/exospherehost/failproofai";
const CONTACT_EMAIL = "failproofai@exosphere.host";

const options = [
{
label: "Star us on GitHub",
icon: Star,
href: "https://github.com/exospherehost/failproofai",
},
{
label: "Documentation",
icon: BookOpen,
href: "https://befailproof.ai",
},
{
label: "Request a Feature",
icon: Lightbulb,
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": "failproofai",
"version": "0.0.1-beta.6",
"version": "0.0.1-beta.7",
"description": "Open-source hooks, policies, and project visualization for Claude Code & Agents SDK",
"bin": {
"failproofai": "./bin/failproofai.mjs"
Expand Down
2 changes: 2 additions & 0 deletions scripts/launch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ export function launch(mode: "dev" | "start"): void {
/_/ \\__,_/_/_/ .___/_/ \\____/\\____/_/ /_/ |_/___/
/_/ v${version}
`);
console.log(` ⭐ Star us: https://github.com/exospherehost/failproofai`);
console.log(` πŸ“– Docs: https://befailproof.ai\n`);

let claudeProjectsPath = parsedPath;

Expand Down