The error: dispatch failure is a network-level error that occurs when the HTTP client fails to send a request to the AWS backend services. This error originates from the AWS Smithy SDK's HTTP client layer and indicates a failure in the network transport layer, not an application-level error.
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
| # bootstrap_devbox.sh (Ubuntu 24.04 LTS) | |
| # Run once as root: sudo bash /tmp/bootstrap_devbox.sh | |
| set -euo pipefail | |
| # ===== Config (edit as needed) ===== | |
| TZ="Europe/Berlin" | |
| # Auto-detect first non-root login; override by exporting TARGET_USER before running | |
| TARGET_USER="${TARGET_USER:-$(logname 2>/dev/null || getent passwd 1000 | cut -d: -f1)}" | |
| TARGET_HOME="$(getent passwd "$TARGET_USER" | cut -d: -f6)" | |
| DOCKER_REMOTE_HOST="${DOCKER_REMOTE_HOST:-docker-host.local}" # e.g., docker-host.lan |
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
| FROM ubuntu:24.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| ENV PYTHONDONTWRITEBYTECODE=1 | |
| ENV PYTHONUNBUFFERED=1 | |
| RUN \ | |
| apt-get update \ | |
| && apt-get install -y \ | |
| bubblewrap \ |
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
| FROM public.ecr.aws/amazonlinux/amazonlinux:2023 AS installer | |
| RUN dnf install --allowerasing -y \ | |
| curl \ | |
| unzip \ | |
| && dnf clean all \ | |
| && rm -rf /var/cache/dnf ; | |
| USER ec2-user | |
| RUN curl -fsSL https://cli.kiro.dev/install | bash |
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
| -- ========================================================================== | |
| -- Neovim Configuration - init.lua | |
| -- Place at: ~/.config/nvim/init.lua | |
| -- ========================================================================== | |
| ----- | |
| -- CORE SETTINGS | |
| ----- | |
| -- Leader key: space is easy to hit and doesn’t conflict with anything |
Ultimate resource for extending Claude Code with custom skills, specialized agents, slash commands, and professional utilities
Last Updated: October 28, 2025 | Author: Alireza Rezvani | License: MIT
You are Kiro, an AI assistant and IDE built to assist developers.
When users ask about Kiro, respond with information about yourself in first person.
You are managed by an autonomous process which takes your output, performs the actions you requested, and is supervised by a human user.
You talk like a human, not like a bot. You reflect the user's input style in your responses.
Slash commands enabling similar experience to Spec workflow in Kiro IDE.
- Cursor - put the files [
spec.md,task.md] to.cursor/commandsfolder - GitHub Copilot (VSCode) - put the files [
spec.prompt.md,task.prompt.md] to.github/promptsfolder
Un Agent mode call up /spec and /task commands to go through each of the phases:
/specwill producerequirements.md,design.mdandtasks.mdfiles under.specdev/specs/{feature-name}folder. You can use a single dialog to go through the Spec process and generate 3 artifacts OR create a new dialog for each stage of the Spec phase and pull in into context previously produced artifact. E.g. if you went through requirments stage (/spec let's work on Feautre 1. It shoudl do the following...) and have.specdev/spec/Feature 1/Requirements.mdfile just create a new dialog, type/specand drag and drop the correspondingRequirements.mdfile/tasksinitiates the execution phase. Open up a new dialog, type/tasksand attach the `.specd
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
| #!/bin/bash | |
| # Modified 4/5/2019 | |
| Version=1.4 | |
| # Original source is from MigrateUserHomeToDomainAcct.sh | |
| # Written by Patrick Gallagher - https://twitter.com/patgmac | |
| # | |
| # Guidance and inspiration from Lisa Davies: | |
| # http://lisacherie.com/?p=239 | |
| # | |
| # Modified by Rich Trouton |
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
| #!/bin/bash | |
| # version 1.4 - Simon Andersen | |
| # set -x | |
| export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
| DSCONFIGADOUTPUT="$(dsconfigad -show -xml)" | |
| COMPUTERACCOUNT="$(/usr/libexec/PlistBuddy -c "Print ':General Info:Computer Account'" /dev/stdin <<<"$DSCONFIGADOUTPUT")" | |
| if [[ -z "$COMPUTERACCOUNT" ]]; then | |
| echo "Fatal error - No computer account name found" |
NewerOlder