A practical showcase of Claude Code capabilities through SKILLS . from algorithmic art, posters and gif creations.
git clone https://github.com/chongdashu/claude-code-skills-demo.gitA practical showcase of Claude Code capabilities through SKILLS . from algorithmic art, posters and gif creations.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/chongdashu/claude-code-skills-demoCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Create a skill that generates algorithmic art using Claude Code. The art should be inspired by [THEME] and use [COLOR_PALETTE]. Generate the code to produce this art and explain how it works in a way that a beginner can understand. Include a brief description of the algorithm used and any interesting mathematical concepts involved.
# Algorithmic Art: Ocean Waves
## Description
This algorithmic art piece generates an abstract representation of ocean waves using mathematical functions. The code uses trigonometric functions to create the wave patterns and color gradients to simulate the depth and movement of water.
## Code
```python
import numpy as np
import matplotlib.pyplot as plt
# Set up the grid
x = np.linspace(-5, 5, 400)
y = np.linspace(-5, 5, 400)
X, Y = np.meshgrid(x, y)
# Create the wave function
Z = np.sin(np.sqrt(X**2 + Y**2))
# Create the color gradient
colors = plt.cm.viridis(Z)
# Plot the wave function
plt.figure(figsize=(10, 8))
plt.imshow(colors, extent=(-5, 5, -5, 5), origin='lower')
plt.title('Ocean Waves')
plt.xlabel('X')
plt.ylabel('Y')
plt.colorbar(label='Wave Height')
plt.show()
```
## Explanation
The code uses the `numpy` and `matplotlib` libraries to generate and plot the wave patterns. The wave function is defined as `Z = sin(sqrt(X^2 + Y^2))`, which creates a circular wave pattern. The color gradient is created using the `viridis` colormap, which simulates the depth and movement of water. The `imshow` function is used to plot the wave function, and the `colorbar` function adds a color scale to the plot.AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
ITIL-aligned IT service management platform
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan