tempo foundry
This commit is contained in:
@@ -10,7 +10,18 @@
|
||||
"Bash(for name in designer-bold designer analyze-branch oracle librarian git-master planning-with-files react-patterns vercel-react-best-practices smart-debug tdd-cycle security-scan issue remove-deadcode worktree-compare worktree-list)",
|
||||
"Bash(do mv \"commands/$name.md\" \"skills/$name/SKILL.md\")",
|
||||
"Bash(done)",
|
||||
"Bash(TUICR_TERMINAL=kitty /home/naps62/.claude/skills/tuicr/tuicr-wrapper.sh:*)"
|
||||
"Bash(TUICR_TERMINAL=kitty /home/naps62/.claude/skills/tuicr/tuicr-wrapper.sh:*)",
|
||||
"Bash(nix search:*)",
|
||||
"WebFetch(domain:raw.githubusercontent.com)",
|
||||
"WebFetch(domain:api.github.com)",
|
||||
"WebFetch(domain:docs.tempo.xyz)",
|
||||
"Bash(nix-prefetch-url:*)",
|
||||
"WebFetch(domain:release-assets.githubusercontent.com)",
|
||||
"Bash(nix build:*)",
|
||||
"Bash(nix-build:*)",
|
||||
"Bash(direnv version:*)",
|
||||
"Bash(nix:*)",
|
||||
"WebFetch(domain:devenv.sh)"
|
||||
]
|
||||
},
|
||||
"sandbox": {
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
# Skills: agents
|
||||
home.file.".claude/skills/designer-bold/SKILL.md".source = ./skills/designer-bold/SKILL.md;
|
||||
home.file.".claude/skills/designer/SKILL.md".source = ./skills/designer/SKILL.md;
|
||||
home.file.".claude/skills/frontend-design/SKILL.md".source = ./skills/frontend-design/SKILL.md;
|
||||
home.file.".claude/skills/analyze-branch/SKILL.md".source = ./skills/analyze-branch/SKILL.md;
|
||||
home.file.".claude/skills/oracle/SKILL.md".source = ./skills/oracle/SKILL.md;
|
||||
home.file.".claude/skills/librarian/SKILL.md".source = ./skills/librarian/SKILL.md;
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
---
|
||||
name: frontend-design
|
||||
description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
|
||||
license: Complete terms in LICENSE.txt
|
||||
---
|
||||
|
||||
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
|
||||
|
||||
The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
|
||||
|
||||
## Design Thinking
|
||||
|
||||
Before coding, understand the context and commit to a BOLD aesthetic direction:
|
||||
- **Purpose**: What problem does this interface solve? Who uses it?
|
||||
- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
|
||||
- **Constraints**: Technical requirements (framework, performance, accessibility).
|
||||
- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
|
||||
|
||||
**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
|
||||
|
||||
Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
|
||||
- Production-grade and functional
|
||||
- Visually striking and memorable
|
||||
- Cohesive with a clear aesthetic point-of-view
|
||||
- Meticulously refined in every detail
|
||||
|
||||
## Frontend Aesthetics Guidelines
|
||||
|
||||
Focus on:
|
||||
- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
|
||||
- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
|
||||
- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
|
||||
- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
|
||||
- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
|
||||
|
||||
NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
|
||||
|
||||
Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
|
||||
|
||||
**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
|
||||
|
||||
Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
|
||||
@@ -5,6 +5,11 @@
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./entire.nix
|
||||
./ralph-claude-code.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
direnv = {
|
||||
enable = true;
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
entire = pkgs.callPackage ../../../pkgs/entire/package.nix { };
|
||||
in
|
||||
{
|
||||
home.packages = [ entire ];
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
ralph-claude-code = pkgs.callPackage ../../../pkgs/ralph-claude-code/package.nix { };
|
||||
in
|
||||
{
|
||||
home.packages = [ ralph-claude-code ];
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "entire";
|
||||
version = "unstable-2026-02-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "entireio";
|
||||
repo = "cli";
|
||||
rev = "4f09f97c2a2d90f5fa28609ff98dbd9ccb988794";
|
||||
hash = "sha256-b3XjU4f/W0OicWlyvCua5LH8IBBRNs9fggFdwBh1rFY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-bzSJfN77v2huchYZwD8ftBRffVLP4OiZqO++KXj3onI=";
|
||||
|
||||
subPackages = [ "cmd/entire" ];
|
||||
|
||||
# Relax Go version requirement since 1.25.5 is compatible with 1.25.6
|
||||
postPatch = ''
|
||||
substituteInPlace go.mod \
|
||||
--replace-fail "go 1.25.6" "go 1.25.5"
|
||||
'';
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Developer platform that integrates with git workflow to capture AI agent sessions";
|
||||
homepage = "https://github.com/entireio/cli";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
mainProgram = "entire";
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
makeWrapper,
|
||||
jq,
|
||||
git,
|
||||
coreutils,
|
||||
gnugrep,
|
||||
gnused,
|
||||
gawk,
|
||||
findutils,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "ralph-claude-code";
|
||||
version = "unstable-2026-02-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frankbria";
|
||||
repo = "ralph-claude-code";
|
||||
rev = "605e50f725cd30bcaa53d132939746d37cc08c9d";
|
||||
hash = "sha256-AS8/z06kZV42O6NrvRdosFEDVdJ1YoYoj/q4OMF2o+0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
buildInputs = [
|
||||
jq
|
||||
git
|
||||
coreutils
|
||||
gnugrep
|
||||
gnused
|
||||
gawk
|
||||
findutils
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
# Create directory structure
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share/ralph
|
||||
|
||||
# Install core scripts to share directory
|
||||
cp ralph_loop.sh $out/share/ralph/
|
||||
cp ralph_monitor.sh $out/share/ralph/
|
||||
cp ralph_import.sh $out/share/ralph/
|
||||
cp migrate_to_ralph_folder.sh $out/share/ralph/
|
||||
cp ralph_enable.sh $out/share/ralph/
|
||||
cp ralph_enable_ci.sh $out/share/ralph/
|
||||
cp setup.sh $out/share/ralph/
|
||||
|
||||
# Install templates and lib directories
|
||||
cp -r templates $out/share/ralph/
|
||||
cp -r lib $out/share/ralph/
|
||||
|
||||
# Create wrapper scripts in bin
|
||||
# Main ralph command
|
||||
cat > $out/bin/ralph <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/ralph_loop.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph
|
||||
|
||||
# ralph-monitor
|
||||
cat > $out/bin/ralph-monitor <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/ralph_monitor.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-monitor
|
||||
|
||||
# ralph-setup
|
||||
cat > $out/bin/ralph-setup <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/setup.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-setup
|
||||
|
||||
# ralph-import
|
||||
cat > $out/bin/ralph-import <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/ralph_import.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-import
|
||||
|
||||
# ralph-migrate
|
||||
cat > $out/bin/ralph-migrate <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/migrate_to_ralph_folder.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-migrate
|
||||
|
||||
# ralph-enable
|
||||
cat > $out/bin/ralph-enable <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/ralph_enable.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-enable
|
||||
|
||||
# ralph-enable-ci
|
||||
cat > $out/bin/ralph-enable-ci <<EOF
|
||||
#!/usr/bin/env bash
|
||||
export RALPH_HOME="$out/share/ralph"
|
||||
exec "$out/share/ralph/ralph_enable_ci.sh" "\$@"
|
||||
EOF
|
||||
chmod +x $out/bin/ralph-enable-ci
|
||||
|
||||
# Make all scripts executable
|
||||
chmod +x $out/share/ralph/*.sh
|
||||
|
||||
# Wrap binaries to ensure PATH contains required tools
|
||||
for prog in $out/bin/*; do
|
||||
wrapProgram $prog \
|
||||
--prefix PATH : ${lib.makeBinPath buildInputs}
|
||||
done
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Autonomous AI development framework for Claude Code";
|
||||
homepage = "https://github.com/frankbria/ralph-claude-code";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
platforms = lib.platforms.unix;
|
||||
mainProgram = "ralph";
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
autoPatchelfHook,
|
||||
zlib,
|
||||
libgcc,
|
||||
}:
|
||||
|
||||
let
|
||||
# Latest nightly as of 2026-02-11
|
||||
version = "nightly-ff2dc8bdde83aaefb4abaf73b7ac27059edeef25";
|
||||
|
||||
# Platform-specific binary selection
|
||||
sources = {
|
||||
x86_64-linux = {
|
||||
url = "https://github.com/tempoxyz/tempo-foundry/releases/download/${version}/foundry_nightly_linux_amd64.tar.gz";
|
||||
hash = "sha256-0zpZpHEJ8m0YD0C4VqmFqmdneJHKjATawJO6fu5b6Og=";
|
||||
};
|
||||
aarch64-linux = {
|
||||
url = "https://github.com/tempoxyz/tempo-foundry/releases/download/${version}/foundry_nightly_linux_arm64.tar.gz";
|
||||
hash = lib.fakeSha256; # Update if building on aarch64-linux
|
||||
};
|
||||
x86_64-darwin = {
|
||||
url = "https://github.com/tempoxyz/tempo-foundry/releases/download/${version}/foundry_nightly_darwin_amd64.tar.gz";
|
||||
hash = lib.fakeSha256; # Update if building on darwin
|
||||
};
|
||||
aarch64-darwin = {
|
||||
url = "https://github.com/tempoxyz/tempo-foundry/releases/download/${version}/foundry_nightly_darwin_arm64.tar.gz";
|
||||
hash = lib.fakeSha256; # Update if building on darwin
|
||||
};
|
||||
};
|
||||
|
||||
platform = sources.${stdenv.hostPlatform.system} or (throw "Unsupported platform: ${stdenv.hostPlatform.system}");
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "tempo-foundry-bin";
|
||||
inherit version;
|
||||
|
||||
src = fetchurl {
|
||||
inherit (platform) url hash;
|
||||
};
|
||||
|
||||
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isLinux [
|
||||
zlib
|
||||
libgcc
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
dontConfigure = true;
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
|
||||
# Install binaries (Tempo fork includes forge, cast, anvil, chisel)
|
||||
for bin in forge cast anvil chisel; do
|
||||
if [ -f "$bin" ]; then
|
||||
install -m755 -D "$bin" "$out/bin/$bin"
|
||||
fi
|
||||
done
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Tempo's fork of Foundry - portable and modular toolkit for Ethereum development with Tempo protocol features";
|
||||
homepage = "https://github.com/tempoxyz/tempo-foundry";
|
||||
license = with lib.licenses; [ mit asl20 ];
|
||||
maintainers = [ ];
|
||||
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||
mainProgram = "forge";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user