Install
$ agentstack add skill-floomhq-moto-algorithmic-art ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Algorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms).
This happens in two steps:
- Algorithmic Philosophy Creation (.md file)
- Express by creating p5.js generative art (.html + .js files)
STEP 1: ALGORITHMIC PHILOSOPHY CREATION
Create an ALGORITHMIC PHILOSOPHY (not static images or templates) that will be interpreted through:
- Computational processes, emergent behavior, mathematical beauty
- Seeded randomness, noise fields, organic systems
- Particles, flows, fields, forces
- Parametric variation and controlled chaos
THE CRITICAL UNDERSTANDING
- What is received: Subtle input from the user, used as a foundation - not a constraint on creative freedom.
- What is created: An algorithmic philosophy/generative aesthetic movement.
- What happens next: The same session receives the philosophy and EXPRESSES IT IN CODE - creating p5.js sketches that are 90% algorithmic generation, 10% essential parameters.
HOW TO GENERATE AN ALGORITHMIC PHILOSOPHY
Name the movement (1-2 words): "Organic Turbulence" / "Quantum Harmonics" / "Emergent Stillness"
Articulate the philosophy (4-6 paragraphs):
Capture the ALGORITHMIC essence through:
- Computational processes and mathematical relationships
- Noise functions and randomness patterns
- Particle behaviors and field dynamics
- Temporal evolution and system states
- Parametric variation and emergent complexity
CRITICAL: Emphasize craftsmanship REPEATEDLY - the final algorithm must feel meticulously crafted, refined through countless iterations, the product of deep expertise.
The algorithmic philosophy should be 4-6 paragraphs long. Output as a .md file.
STEP 2: DEDUCING THE CONCEPTUAL SEED
Identify the subtle conceptual thread from the original request. The concept is a subtle, niche reference embedded within the algorithm itself - someone familiar with the subject should feel it intuitively.
STEP 3: P5.JS IMPLEMENTATION
TECHNICAL REQUIREMENTS
Seeded Randomness (Art Blocks Pattern):
// ALWAYS use a seed for reproducibility
let seed = 12345;
randomSeed(seed);
noiseSeed(seed);
Parameter Structure:
let params = {
seed: 12345, // Always include seed for reproducibility
// Add parameters that control the algorithm:
// - Quantities (how many?)
// - Scales (how big? how fast?)
// - Probabilities (how likely?)
// - Ratios (what proportions?)
};
Core Algorithm - EXPRESS THE PHILOSOPHY:
The algorithmic philosophy should dictate what to build. Do not ask "which pattern should I use?" - ask "how to express this philosophy through code?"
If the philosophy is about organic emergence, use:
- Elements that accumulate or grow over time
- Random processes constrained by natural rules
- Feedback loops and interactions
If the philosophy is about mathematical beauty, use:
- Geometric relationships and ratios
- Trigonometric functions and harmonics
If the philosophy is about controlled chaos, use:
- Random variation within strict boundaries
- Order emerging from disorder
Canvas Setup:
function setup() {
createCanvas(1200, 1200);
}
function draw() {
// Your generative algorithm
}
CRAFTSMANSHIP REQUIREMENTS
- Balance: Complexity without visual noise, order without rigidity
- Color Harmony: Thoughtful palettes, not random RGB values
- Composition: Even in randomness, maintain visual hierarchy and flow
- Performance: Smooth execution, optimized for real-time if animated
- Reproducibility: Same seed ALWAYS produces identical output
OUTPUT FORMAT
- Algorithmic Philosophy - As a .md file
- Single HTML Artifact - Self-contained interactive generative art
The HTML artifact contains everything: p5.js (from CDN), the algorithm, parameter controls, and UI - all in one file.
INTERACTIVE FEATURES
Required features:
- Sliders for numeric parameters (particle count, noise scale, speed, etc.)
- Seed navigation: display current seed, Previous/Next/Random/Jump buttons
- Download PNG button
- Real-time updates when parameters change
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: floomhq
- Source: floomhq/moto
- License: MIT
- Homepage: https://github.com/floomhq/moto#readme
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.