forked from Dicklesworthstone/agentic_coding_flywheel_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Merge latest updates from ACFS #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
deepakdgupta1
wants to merge
103
commits into
deepakdgupta1:main
Choose a base branch
from
Dicklesworthstone:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When logging.sh fails to source (e.g., during curl|bash installer execution), log_success/log_error/etc. were undefined, causing "command not found" errors during acfs-update. Every other lib script (os_detect.sh, zsh.sh, user.sh, support.sh) defines fallback log functions but security.sh did not. Closes #99 Co-Authored-By: Claude <noreply@anthropic.com>
Three fixes: 1. scripts/generated/install_agents.sh: Change 'stable' to 'latest' channel for Claude Code installer. The manifest and update.sh were fixed in 5b975a8 but the generated script was never regenerated. (Completes fix for #96) 2. scripts/lib/logging.sh: Add bash 5.3+ process substitution guard matching install.sh's pattern. The unguarded `exec 2> >(tee ...)` causes silent exits on Ubuntu 25.04. Now tests process substitution first and falls back to ACFS_LOG_FALLBACK mode. (Partial fix for #98) 3. scripts/lib/autofix.sh: Add FD fallback for lock acquisition matching install.sh's pattern. The bare `exec 200>"$ACFS_LOCK_FILE"` silently crashes on bash 5.3+. Now tries FD 200, then 199, then warns and continues. (Partial fix for #98) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
end_autofix_session() was hardcoding `flock -u 200` but start_autofix_session() now falls back to FD 199 on bash 5.3+. This caused stale locks when the fallback FD was used. Promote the lock FD tracking to a module-level variable so both functions stay in sync. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This change adds automatic generation and updating of the root /AGENTS.md file, which provides machine-wide agent coordination rules. Changes to install.sh: - Install generate-root-agents-md.sh as flywheel-update-agents-md - Link to /usr/local/bin for system-wide access - Run initial generation during installation - Gracefully skip if generator script is not available Changes to scripts/lib/update.sh: - Add update_root_agents_md() function to regenerate /AGENTS.md - Integrate into main update workflow after stack updates - Skip gracefully if flywheel-update-agents-md not installed The root AGENTS.md provides essential coordination rules for multi-agent environments, ensuring consistent behavior across all coding agents on the system. Co-Authored-By: Claude <noreply@anthropic.com>
On bash 5.3+ with set -e, `exec N>file` exits the script before `if` can catch the failure. This caused silent installer exits on Ubuntu 25.04 after pre-flight passed. The fix tests exec in a subshell first (which is safe), then only runs in the main shell if the test succeeded. Fixed sites: - install.sh: install-wide flock (FD 199/198) - install.sh: tee logging process substitution - scripts/lib/state.sh: state file lock (FD 200/199) - scripts/lib/autofix.sh: autofix session lock (FD 200/199) - scripts/lib/logging.sh: tee logging process substitution Fixes #98 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
In `exec 2> >(tee -a "$ACFS_LOG_FILE" >&3) 2>/dev/null`, the trailing 2>/dev/null overrides the tee redirect, sending stderr to /dev/null instead of the tee process. The subshell guard already ensures the exec will succeed, so no error suppression is needed. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Four bugs found during deep code review: 1. install.sh: acfs_curl_with_retry() captured $? after if/fi without else clause. Per POSIX/bash spec, $? is always 0 when if-condition fails and there's no else. Retry logic never activated on failure. 2. error_tracking.sh: try_step_with_backoff() same $? bug - silently returned success even when all retries exhausted. 3. error_tracking.sh: install_tool_tracked() same $? bug - error tracking always reported "Exit code 0" for failed tools. 4. state.sh: confirm_resume() used bare printf>file instead of state_save() for state file writes during version mismatch handling. A crash mid-write would corrupt the state file. All other state writes use state_write_atomic() (temp+sync+rename). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Migrate all references from the legacy beads tool (bd) to beads_rust (br): **Core Changes:** - Remove bd CLI alias from manifest (cliAliases now empty) - Remove `alias bd='br'` from acfs.zshrc - Rename all state variables: enable_bd → enable_br, skip_bd → skip_br - Update all CLI flags: --no-bd → --no-br - Update environment variables: AGENTS_ENABLE_BD → AGENTS_ENABLE_BR **Shell Config (acfs/zsh/acfs.zshrc):** - Add br alias guard to remove stale `alias br='bun run'` from older ACFS - Uses `whence -p br` (zsh-specific) to detect binary, not alias - Fix help message: bd → br in newproj description **Web App (apps/web/):** - Update all lesson components with br commands - Update commands.ts, jargon.ts, tool-data.tsx - Regenerate manifest-commands.ts and manifest-tools.ts **Installer Scripts (scripts/lib/):** - Update newproj.sh, newproj_agents.sh, newproj_errors.sh - Update all screen modules (features, progress, success, etc.) - Update doctor.sh reference **Tests:** - Fix mock function in test_newproj_errors.bats: bd() → br() - Update all test flags and assertions for br - Fix shellcheck SC1087 in test_new_tools_e2e.sh **Documentation:** - Update lessons, tutorials, and design docs - Update AGENTS.md, README.md Note: Bead IDs (bd-XXXX) are preserved as historical identifiers. Co-Authored-By: Claude <noreply@anthropic.com>
- cass: installer updated upstream (d7a17e7677600514df13ea1d064f0b48c0da0d1e4bed34915345314b1adc313a) - jfp: temporarily unavailable (FETCH_FAILED) Co-Authored-By: Claude <noreply@anthropic.com>
The YAML block scalar was broken because multiline content in the --body argument started at column 1, breaking out of the YAML block. This caused yamllint to fail with "could not find expected ':'". Fix by using a bash heredoc to set PR_BODY variable, which avoids YAML parser confusion with markdown headers like ### Reason. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Added documentation and suppressions for shellcheck warnings that are intentional patterns in the codebase: - SC2317: Dynamic function calls via function references - SC2016: Single quotes to pass literal strings to subshells - SC1091: Dynamic sourcing of related scripts - SC2059: ANSI color variables in printf format strings - SC2034: Variables used by sourcing scripts - SC2155: Acceptable risk in simple command substitutions - SC2030/SC2031: Intentional pipeline patterns - SC2086: Intentional word splitting - SC2002: Cat for pipeline readability This fixes the long-standing shellcheck CI failures. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- .shellcheckrc: Suppress intentional shellcheck patterns that have been causing CI failures across all recent runs (dynamic function calls, single-quote literals, dynamic sourcing, etc.) - user.sh: Initialize pubkey="" to prevent "unbound variable" error in CI Docker containers where neither stdin nor /dev/tty is available Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…sient chown errors
- Use ${ACFS_HOME:-default} instead of unconditional assignment in
init_target_paths(), so tests can override the state directory
- Use ${ACFS_STATE_FILE:-default} in both init_target_paths() and the
state management init block
- Make acfs_chown_tree() tolerate "No such file or directory" errors
from transient files (SSH control sockets) that vanish during
recursive chown of a live home directory
Fixes E2E Resume After Failure test (was 10/11, now 11/11).
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…limits The upstream zoxide install script hits GitHub's API to determine the latest release version, which triggers rate limits in CI environments. - Prefer apt-get install zoxide when available (Ubuntu 24.04+) - Fall back to upstream script if apt package unavailable - apt version (0.9.7) is close to latest (0.9.8) Fixes CI flake in Ubuntu 24.04 vibe mode test. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add pre-flight checks for system dependencies - Improve error handling and user feedback during installation - Add detection for common installation issues Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The SLB upstream install script calls GitHub API to fetch the latest release version, which triggers rate limits in CI environments (403 error). - Install SLB directly from .deb package in GitHub releases - Pin version to 0.2.0 (current latest) - Fall back to upstream script if .deb install fails - Supports both amd64 and arm64 architectures Fixes Ubuntu 25.04 CI failure where SLB failed to install. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The mktemp -d call for SLB installation was missing:
1. Proper template with XXXXXX suffix
2. Error suppression (2>/dev/null)
3. Fallback to empty string on failure (|| slb_tmp="")
4. Validation before use ([[ -n "$slb_tmp" ]] && [[ -d "$slb_tmp" ]])
Without these guards, if mktemp failed (e.g., /tmp full or permissions),
$slb_tmp would be empty and "${slb_tmp}/${slb_deb}" would expand to
"/${slb_deb}", potentially writing to the root filesystem.
Also includes premium skills documentation updates.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Optimizations applied following extreme-software-optimization methodology: 1. state_upgrade_print_status(): 11→1 jq subprocess spawns - Extract all fields in single jq call using null-separated output - Parse with IFS read instead of 11 separate echo|jq pipes 2. confirm_resume(): 5→1 jq subprocess spawns - Same pattern: batch field extraction in single jq invocation 3. Optional apt packages: 14→1 apt-get calls (typical case) - Batch install all packages at once - Fall back to individual install only on failure Isomorphism verified: Output unchanged, logic flow preserved. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Updated checksums for upstream installer scripts that have changed. Changed tools: dcg Trusted: dcg External: none 🤖 Generated by checksum-monitor workflow
Bash command substitution strips null bytes, causing the optimized jq parsing to fail silently. All fields were concatenated into the first variable instead of being split properly. Fix: Use ASCII Unit Separator (0x1f) which bash preserves and is specifically designed for field separation in text processing. Verified: All 10 fields now parse correctly with IFS=$'\x1f' read. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Increase muted-foreground contrast to meet WCAG AA (0.6→0.7 dark, 0.45→0.4 light) - Raise text-xs minimum from 11px to 12px for better readability - Expand mobile nav touch targets from 36px to 44px (Apple HIG) - Add ARIA labels to terminal window control dots - Replace all hardcoded text-[10px]/text-[11px] with text-xs - Update design tokens to use accessible font sizes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The terminal window control dots (red/yellow/green) are purely decorative and non-functional. Using role="img" with aria-label made screen readers announce them unnecessarily. Changed to aria-hidden="true" to hide them from assistive technology since they convey no meaningful information. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add focus-visible + group-focus-within to markdown copy button - Add focus-visible ring to wizard layout home button - Fix WCAG contrast: change text-white/30 and text-white/40 to text-white/60 - Fix small fonts: change text-[9px], text-[10px], text-[11px] to text-xs - Improve hover states: increase hover contrast from /60 to /80 Files fixed: - lib/markdown-components.tsx: copy button focus states - app/wizard/layout.tsx: home button focus-visible - app/learn/[slug]/lesson-content.tsx: contrast + font size - app/wizard/accounts/page.tsx: font size on labels - components/flywheel-visualization.tsx: badge font size - components/lessons/welcome-lesson.tsx: sublabel contrast + font Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Change small font sizes (text-[9px], text-[10px], text-[11px]) to text-xs (12px) - Improve color contrast by changing text-white/30 → text-white/50 and text-white/40 → text-white/60 - Fix low contrast text in code blocks, lesson components, search inputs, and navigation - Ensure WCAG AA compliance for better readability Files updated: - 29 files across learn pages, lesson components, wizard pages, and UI components Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add focus-visible rings to summary/details elements for keyboard navigation - Increase close button touch targets from 32px to 40px (HelpPanel, tools page) - Add group-focus-within states to hover-only opacity patterns - Add focus-visible rings to prev/next lesson navigation links Files updated: - HelpPanel.tsx - focus ring on summary, larger close button - connection-check.tsx - focus ring on summary - launch-onboarding/page.tsx - focus rings on summary elements - tools/page.tsx - larger external link button with focus ring - learn/page.tsx - focus-within states on lesson cards - lesson-content.tsx - focus states on navigation and gradients - lesson-components.tsx - focus-within on gradient overlays Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add escape key listener to flywheel-visualization mobile sheet - Add role="dialog", aria-modal, aria-label to flywheel sheet - Add escape key listener to jargon tooltip mobile modal These changes ensure keyboard users can dismiss modals with Escape key and screen readers properly announce modal dialogs. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add aria-label to search inputs (tools, troubleshooting, glossary pages) - Add aria-label to clear search buttons for screen readers - Add focus-visible ring to glossary summary elements for keyboard users Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Update issue metadata and status fields in the beads JSONL database, reflecting recent agent activity and task progression across tracked flywheel issues. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updated checksums for upstream installer scripts that have changed. Changed tools: cass Trusted: cass External: none 🤖 Generated by checksum-monitor workflow
…e Safari swipe on OS selection (#125, #126) Issue #125: update.sh and uca alias used bare `claude update` (stable channel), causing version downgrades after install.sh was fixed to use @latest. Now all invocations in run_cmd_claude_update() and the uca alias use --channel latest. Issue #126: Mobile Safari blocked swipe/tap on OS selection wizard due to @use-gesture/react calling preventDefault() on touch events. Fix adds preventScrollAxis and pointer options to useDrag, sets explicit touch-action on the stepper and OS card elements so native scrolling and taps work properly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…-update (#127) When ~/.acfs is installed via tarball rather than git clone, the update_acfs_self() function would silently skip because .git/ was missing. Now it initializes a git repo, adds the origin remote, fetches main, and does a --mixed reset so local customizations survive as unstaged changes. The next `acfs update` run then uses the normal git-based pull path. Closes #127 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…bd-1ddv.3) Ensures documentation matches the code fix: bare "claude update" silently uses the stable channel, but --channel latest preserves the intended channel. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 tests validating all "claude update" invocations use --channel latest: static analysis, dry-run path, alias integrity, completeness sweep, documentation consistency, and live channel version alignment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The upgrade_claude_code() function in agents.sh was using bare "claude update" which defaults to the stable channel. Added --channel latest to match the install path and update.sh behavior. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Extends the bun manifest pipeline to compute SHA256 hashes for 15 critical internal scripts and emit scripts/generated/internal_checksums.sh. Enables drift detection for security.sh, agents.sh, update.sh, etc. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
SHA256 changed due to acfs.manifest.yaml documentation update. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updated checksums for upstream installer scripts that have changed. Changed tools: tru Trusted: tru External: none 🤖 Generated by checksum-monitor workflow
Detected by check-manifest-drift.sh (scheduled systemd timer). Regenerated all scripts via `bun run generate` to sync with current acfs.manifest.yaml hash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ksums (bd-3tpl.4) Adds SHA256 verification of 15 critical internal scripts alongside the existing manifest hash check. Gracefully skips if checksums file is missing (pre-migration). Fix mode verifies checksums after regen. JSON output now includes internal_scripts section. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…tion (bd-3tpl.5) After sourcing logging.sh, the installer now verifies SHA256 checksums of all 15 tracked internal scripts before sourcing them. Detects tampering and aborts with clear error messages. Gracefully skips if checksums file is missing (pre-migration compat). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
New lesson 21 documents the single-branch model, why branches/worktrees don't scale with agent swarms, and how file reservations replace branch isolation. Also adds cross-reference from lesson 07. Closes #130 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The self-update function (update_acfs_self) previously bailed out entirely when `git diff --quiet` detected any local changes, logging "local modifications detected, skipping" and returning. This meant VPSes with ANY unstaged change (e.g., stale checksums.yaml timestamp drift) would never self-update, leaving them stuck on old versions while the repo moved forward. This cascaded into downstream failures (stale checksums breaking zoxide installs, old apt logic, etc.). Replace the bail-out with a stash-pull-pop strategy: 1. If local modifications exist, `git stash` them before pulling. The stashed flag is only set on stash success to avoid popping a pre-existing user stash if git stash itself fails. 2. Attempt `git pull --ff-only` as before. 3. If ff-only fails (diverged history), fall back to `git reset --mixed origin/main` which is already used in the tarball bootstrap path — it moves HEAD while preserving the working tree. 4. Restore stashed modifications via `stash pop` regardless of which update path succeeded. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Detected by check-manifest-drift.sh (scheduled systemd timer). Regenerated all scripts via `bun run generate` to sync with current acfs.manifest.yaml hash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…k files Both check_apt_lock() and wait_for_apt_lock() used `pgrep -a 'apt|dpkg|unattended-upgr'` to detect whether apt was busy. This caused false positives on VPSes where the unattended-upgrades daemon runs in the background — pgrep would match the daemon process even though it wasn't holding any dpkg locks. The result: `acfs update` would skip all apt operations (update, upgrade, autoremove) on systems where `sudo apt update && apt upgrade` worked perfectly fine. Changes to both functions: wait_for_apt_lock(): - Remove pgrep call and the `$apt_procs` variable entirely. - Replace the mixed pgrep+fuser check with a single loop over the three dpkg/apt lock files (/var/lib/dpkg/lock-frontend, /var/lib/apt/lists/lock, /var/lib/dpkg/lock) using `fuser` only. - Replace the stale `$apt_procs` log line with `fuser -v` diagnostic output showing which process actually holds the lock. check_apt_lock(): - Remove the pgrep-first-then-maybe-check-locks approach. The old logic checked pgrep first and only fell through to lock file checks if no processes were found, which inverted the correct priority. - Replace with a direct fuser loop over all three lock files. If none are held, return 0 immediately regardless of background processes. - Remove the unattended-upgrades-specific pgrep hint block — it was only useful when pgrep was the detection mechanism and is now misleading since we no longer flag unattended-upgrades as a blocker. - Change the timeout diagnostic from log_item "warn" to "skip" for consistency with other skipped-operation patterns. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The Oh-My-Zsh upgrade, Powerlevel10k update, and zsh plugin updates all performed git operations (upgrade scripts, git pull) with no timeout. If any git operation hung — network issue, SSH key prompt, DNS timeout, unresponsive remote — the entire `acfs update` would block indefinitely with no way to recover short of killing the process. Add `timeout` wrappers to all git-based shell tool updates: - update_omz(): wrap the OMZ upgrade script invocations with `timeout 120` (2 minutes, since the upgrade script does more than just git pull). Wrap the git pull fallback with `timeout 60`. - update_p10k(): wrap `git pull --ff-only` with `timeout 60`. The timeout exit code (124) falls through to the existing error handling path which logs "git pull failed". - update_zsh_plugins(): wrap each plugin's `git pull --ff-only` with `timeout 60`. Same error handling behavior as P10K. The timeout values are generous enough for normal network conditions but prevent indefinite hangs on flaky VPS connections. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The checksums regeneration script updated the header timestamp from UTC (13:25:14+00:00) to EST (13:51:29-05:00) during a routine run. No actual checksum values changed — this is purely a cosmetic timestamp format update from the security.sh --update-checksums tool. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Detected by check-manifest-drift.sh (scheduled systemd timer). Regenerated all scripts via `bun run generate` to sync with current acfs.manifest.yaml hash. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updated checksums for upstream installer scripts that have changed. Changed tools: claude Trusted: none External: claude 🤖 Generated by checksum-monitor workflow
…ence install.sh: - Add missing-file reporting to the integrity check loop. Previously, if a file listed in the manifest was absent on disk, the failure counter was incremented but no diagnostic was emitted. Now log_error (or plain stderr) reports the missing path with a truncated expected checksum, making installer debugging far easier. scripts/check-manifest-drift.sh: - In JSON mode, propagate the drift detection result as an exit code when --fix is not requested. exit 1 on drift, exit 0 on clean. This lets callers (dsr quality gates, systemd timers, CI) use the script as a proper check without parsing JSON output. scripts/lib/update.sh: - Broaden the dirty-repo detection in update_acfs_self() to also check the staging area (git diff --cached --quiet). Previously, staged but uncommitted changes were invisible and the pull could silently clobber them. - Guard wait_for_apt_lock() against systems where psmisc (fuser) is not installed. On minimal containers or fresh installs, fuser may be absent; the function now logs and returns 0 instead of erroring out. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updated checksums for upstream installer scripts that have changed. Changed tools: dcg Trusted: dcg External: none 🤖 Generated by checksum-monitor workflow
Updated checksums for upstream installer scripts that have changed. Changed tools: uv Trusted: none External: uv 🤖 Generated by checksum-monitor workflow
Updated checksums for upstream installer scripts that have changed. Changed tools: uv Trusted: none External: uv 🤖 Generated by checksum-monitor workflow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Merge latest updates from ACFS