name: agent-engineering description: > Best practices for operating Claude Code on complex, multi-domain engineering projects. Covers agentic architecture, tool design, MCP integration, configuration hierarchy, prompt engineering, context management, multi-agent orchestration, session architecture, and reliability patterns. Based on the Claude Certified Architect — Foundations (CCA-F) exam domains. Use when planning large implementations, configuring Claude Code for a team, designing multi-session workflows, debugging agent behavior, or preparing for the CCA-F certification.
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
| /** | |
| * A plain object that represents an intention to change the state. | |
| * Actions are the only way to get data into the store. | |
| */ | |
| export interface Action<T = any> { | |
| type: T; | |
| } | |
| /** | |
| * An Action type which accepts any other properties. |
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
| diff --git a/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp b/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp | |
| index 362d76d..7b00d71 100644 | |
| --- a/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp | |
| +++ b/node_modules/react-native/ReactCommon/jsc/JSCRuntime.cpp | |
| @@ -368,9 +368,9 @@ JSCRuntime::JSCRuntime(JSGlobalContextRef ctx) | |
| #endif | |
| { | |
| #ifndef NDEBUG | |
| -#ifdef _JSC_HAS_INSPECTABLE | |
| - if (__builtin_available(macOS 13.3, iOS 16.4, tvOS 16.4, *)) { |
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
| /** | |
| * @prettier | |
| */ | |
| import { doc } from 'prettier'; | |
| import { printers as estreePrinters } from 'prettier/plugins/estree'; | |
| const originalEstreePrinter = estreePrinters.estree; | |
| const { group, indent, line, join, ifBreak } = doc.builders; | |
| const DEFAULT_THRESHOLD = 1; |
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
| [package] | |
| name = "wasm-validator" | |
| version = "0.1.0" | |
| edition = "2021" | |
| description = "A WebAssembly JSON schema validator" | |
| [lib] | |
| crate-type = ["cdylib"] | |
| [dependencies] |
Here i'm creating a simple sh script to redirect the node command to bun.
#!/usr/bin/env sh
# pnpm requires node, so we use this script as an alias on docker;
if [ "$1" = "--version" ]; then
echo "v20.11.1"
else
command bun "$@"
fi
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 | |
| # Check if an argument is provided | |
| if [ "$#" -ne 1 ]; then | |
| echo "Usage: $0 <path_to_Dockerfile | image_name>" | |
| exit 1 | |
| fi | |
| # Function to list the contents of a Docker image in a tree format | |
| list_image_contents() { |
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
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export PATH=/Users/$USER/.pyenv/versions/2.7.18/bin:$PATH | |
| alias reload="source ~/.zshrc" | |
| alias w="webstorm" | |
| alias zshrc="idea ~/.zshrc" | |
| alias i="pm install" | |
| alias rr="cargo-watch -x run" | |
| echopm(){ |
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
| # https://www.jetbrains.com/help/webstorm/directories-used-by-the-ide-to-store-settings-caches-plugins-and-logs.html#plugins-directory | |
| rm -rf ~/Library/Caches/JetBrains/WebStorm* |
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/sh | |
| git add . | |
| COMMIT_SUCCESS=false | |
| if git commit -m 'temp'; then | |
| COMMIT_SUCCESS=true | |
| fi | |
| git clean -fdx | |
| if [ "$COMMIT_SUCCESS" = true ]; then | |
| git reset --soft HEAD~1 |
NewerOlder