Present the repo as a scoped bookmarks API product and drop homelab-only notes.

This commit is contained in:
alexveley
2026-09-22 08:10:02 -04:00
parent c19e619b2f
commit cfda629418
10 changed files with 123 additions and 45 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
"""Call Firefox Agent Bridge with a Bearer token from FAB_TOKEN or a file."""
"""Call Bookmarks API with a Bearer token from FAB_TOKEN or a file."""
from __future__ import annotations
import argparse
@@ -62,7 +62,7 @@ def call(
def main() -> int:
parser = argparse.ArgumentParser(description="Call Firefox Agent Bridge")
parser = argparse.ArgumentParser(description="Call Bookmarks API")
parser.add_argument("method", help="e.g. bookmarks.search or meta.methods")
parser.add_argument("args_json", nargs="?", default="[]", help="JSON array of arguments")
parser.add_argument("--url", default=DEFAULT_BASE)