From c6c735799ab4f3aabb6ffd73f8bc604e41a20364 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 23:27:06 +0000 Subject: [PATCH] docs: update README.md for CLI accuracy Updated the Usage section in README.md to include missing but essential CLI flags for init, apply, clean, status, doctor, and skill commands. These changes ensure the documentation accurately reflects the current CLI implementation as verified against the codebase. Co-authored-by: yacosta738 <33158051+yacosta738@users.noreply.github.com> --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 071bcf0..cba83c5 100644 --- a/README.md +++ b/README.md @@ -199,19 +199,19 @@ agentsync apply ```bash # Initialize a new configuration -agentsync init +agentsync init [--path ] [--force] # Initialize with interactive wizard (for existing projects with agent files) -agentsync init --wizard +agentsync init --wizard [--path ] [--force] # Apply configuration (create symlinks) -agentsync apply +agentsync apply [--path ] [--config ] # Clean existing symlinks before applying agentsync apply --clean # Remove all managed symlinks -agentsync clean +agentsync clean [--path ] [--config ] # Use a custom config file agentsync apply --config /path/to/config.toml @@ -229,15 +229,15 @@ agentsync apply --no-gitignore agentsync apply --verbose # Show status of managed symlinks -agentsync status +agentsync status [--project-root ] [--json] # Run diagnostic and health check -agentsync doctor +agentsync doctor [--project-root ] # Manage skills -agentsync skill install -agentsync skill update -agentsync skill uninstall +agentsync skill [--project-root ] install [--source ] [--json] +agentsync skill [--project-root ] update [--source ] [--json] +agentsync skill [--project-root ] uninstall [--json] ``` ### Status