mirror of
https://github.com/duthaho/claudekit.git
synced 2026-07-15 04:05:18 +03:00
feat: add verification methodology and writing plans skills
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<svg width="400" height="300" viewBox="0 0 400 300" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Background terminal window -->
|
||||
<rect x="20" y="20" width="360" height="260" rx="12" fill="#0f172a" stroke="#1e293b" stroke-width="2"/>
|
||||
|
||||
<!-- Terminal header -->
|
||||
<rect x="20" y="20" width="360" height="32" rx="12" fill="#1e293b"/>
|
||||
<rect x="20" y="40" width="360" height="12" fill="#1e293b"/>
|
||||
<circle cx="40" cy="36" r="6" fill="#ef4444"/>
|
||||
<circle cx="60" cy="36" r="6" fill="#eab308"/>
|
||||
<circle cx="80" cy="36" r="6" fill="#22c55e"/>
|
||||
|
||||
<!-- Terminal content -->
|
||||
<text x="40" y="80" font-family="monospace" font-size="14" fill="#64748b">$</text>
|
||||
<text x="55" y="80" font-family="monospace" font-size="14" fill="#06b6d4">/feature</text>
|
||||
<text x="125" y="80" font-family="monospace" font-size="14" fill="#94a3b8">"add user authentication"</text>
|
||||
|
||||
<!-- Progress indicators -->
|
||||
<text x="40" y="110" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="110" font-family="monospace" font-size="12" fill="#94a3b8">Planning feature...</text>
|
||||
|
||||
<text x="40" y="135" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="135" font-family="monospace" font-size="12" fill="#94a3b8">Implementing auth service...</text>
|
||||
|
||||
<text x="40" y="160" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="160" font-family="monospace" font-size="12" fill="#94a3b8">Writing tests...</text>
|
||||
|
||||
<text x="40" y="185" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="185" font-family="monospace" font-size="12" fill="#94a3b8">Code review passed</text>
|
||||
|
||||
<text x="40" y="210" font-family="monospace" font-size="12" fill="#06b6d4">✓</text>
|
||||
<text x="58" y="210" font-family="monospace" font-size="12" fill="#06b6d4">Feature complete!</text>
|
||||
|
||||
<!-- Cursor -->
|
||||
<rect x="40" y="235" width="8" height="16" fill="#06b6d4" opacity="0.8">
|
||||
<animate attributeName="opacity" values="0.8;0;0.8" dur="1s" repeatCount="indefinite"/>
|
||||
</rect>
|
||||
|
||||
<!-- Decorative glow -->
|
||||
<defs>
|
||||
<radialGradient id="glow" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#06b6d4" stop-opacity="0.2"/>
|
||||
<stop offset="100%" stop-color="#06b6d4" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<ellipse cx="200" cy="150" rx="180" ry="120" fill="url(#glow)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,46 @@
|
||||
<svg width="400" height="300" viewBox="0 0 400 300" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Background terminal window -->
|
||||
<rect x="20" y="20" width="360" height="260" rx="12" fill="#f8fafc" stroke="#e2e8f0" stroke-width="2"/>
|
||||
|
||||
<!-- Terminal header -->
|
||||
<rect x="20" y="20" width="360" height="32" rx="12" fill="#f1f5f9"/>
|
||||
<rect x="20" y="40" width="360" height="12" fill="#f1f5f9"/>
|
||||
<circle cx="40" cy="36" r="6" fill="#ef4444"/>
|
||||
<circle cx="60" cy="36" r="6" fill="#eab308"/>
|
||||
<circle cx="80" cy="36" r="6" fill="#22c55e"/>
|
||||
|
||||
<!-- Terminal content -->
|
||||
<text x="40" y="80" font-family="monospace" font-size="14" fill="#94a3b8">$</text>
|
||||
<text x="55" y="80" font-family="monospace" font-size="14" fill="#0891b2">/feature</text>
|
||||
<text x="125" y="80" font-family="monospace" font-size="14" fill="#475569">"add user authentication"</text>
|
||||
|
||||
<!-- Progress indicators -->
|
||||
<text x="40" y="110" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="110" font-family="monospace" font-size="12" fill="#475569">Planning feature...</text>
|
||||
|
||||
<text x="40" y="135" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="135" font-family="monospace" font-size="12" fill="#475569">Implementing auth service...</text>
|
||||
|
||||
<text x="40" y="160" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="160" font-family="monospace" font-size="12" fill="#475569">Writing tests...</text>
|
||||
|
||||
<text x="40" y="185" font-family="monospace" font-size="12" fill="#22c55e">✓</text>
|
||||
<text x="58" y="185" font-family="monospace" font-size="12" fill="#475569">Code review passed</text>
|
||||
|
||||
<text x="40" y="210" font-family="monospace" font-size="12" fill="#0891b2">✓</text>
|
||||
<text x="58" y="210" font-family="monospace" font-size="12" fill="#0891b2">Feature complete!</text>
|
||||
|
||||
<!-- Cursor -->
|
||||
<rect x="40" y="235" width="8" height="16" fill="#0891b2" opacity="0.8">
|
||||
<animate attributeName="opacity" values="0.8;0;0.8" dur="1s" repeatCount="indefinite"/>
|
||||
</rect>
|
||||
|
||||
<!-- Decorative glow -->
|
||||
<defs>
|
||||
<radialGradient id="glow-light" cx="50%" cy="50%" r="50%">
|
||||
<stop offset="0%" stop-color="#0891b2" stop-opacity="0.1"/>
|
||||
<stop offset="100%" stop-color="#0891b2" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<ellipse cx="200" cy="150" rx="180" ry="120" fill="url(#glow-light)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg width="140" height="32" viewBox="0 0 140 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Terminal icon -->
|
||||
<rect x="2" y="4" width="24" height="18" rx="3" stroke="#06b6d4" stroke-width="2" fill="none"/>
|
||||
<path d="M7 11L11 14L7 17" stroke="#06b6d4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<line x1="13" y1="17" x2="19" y2="17" stroke="#06b6d4" stroke-width="2" stroke-linecap="round"/>
|
||||
|
||||
<!-- Text: Claude Kit -->
|
||||
<text x="34" y="19" font-family="system-ui, -apple-system, sans-serif" font-size="16" font-weight="600" fill="#f8fafc">
|
||||
Claude
|
||||
</text>
|
||||
<text x="90" y="19" font-family="system-ui, -apple-system, sans-serif" font-size="16" font-weight="600" fill="#06b6d4">
|
||||
Kit
|
||||
</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 751 B |
@@ -0,0 +1,14 @@
|
||||
<svg width="140" height="32" viewBox="0 0 140 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<!-- Terminal icon -->
|
||||
<rect x="2" y="4" width="24" height="18" rx="3" stroke="#0891b2" stroke-width="2" fill="none"/>
|
||||
<path d="M7 11L11 14L7 17" stroke="#0891b2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<line x1="13" y1="17" x2="19" y2="17" stroke="#0891b2" stroke-width="2" stroke-linecap="round"/>
|
||||
|
||||
<!-- Text: Claude Kit -->
|
||||
<text x="34" y="19" font-family="system-ui, -apple-system, sans-serif" font-size="16" font-weight="600" fill="#0f172a">
|
||||
Claude
|
||||
</text>
|
||||
<text x="90" y="19" font-family="system-ui, -apple-system, sans-serif" font-size="16" font-weight="600" fill="#0891b2">
|
||||
Kit
|
||||
</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 751 B |
Reference in New Issue
Block a user