fix: add involves edge from task to agent:nomos at creation
Plus sync vendor directory for Docker build compatibility.
This commit is contained in:
13
vendor/src/index.js
vendored
Normal file
13
vendor/src/index.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
export function createGlyph(_seed, resolution) {
|
||||
const size = resolution
|
||||
const half = size / 2
|
||||
return `<svg viewBox="0 0 ${size} ${size}" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="${size}" height="${size}" fill="#1a1a2e"/>
|
||||
<circle cx="${half}" cy="${half}" r="${half * 0.35}" fill="none" stroke="#bc8cff" stroke-width="1.5"/>
|
||||
<circle cx="${half}" cy="${half}" r="${half * 0.18}" fill="#bc8cff"/>
|
||||
<line x1="${half}" y1="${half * 0.2}" x2="${half}" y2="${half * 0.65}" stroke="#58a6ff" stroke-width="1.5"/>
|
||||
<line x1="${half * 0.2}" y1="${half}" x2="${half * 0.65}" y2="${half}" stroke="#58a6ff" stroke-width="1.5"/>
|
||||
<line x1="${half * 1.35}" y1="${half}" x2="${half * 0.65}" y2="${half}" stroke="#3fb950" stroke-width="1.5"/>
|
||||
<line x1="${half}" y1="${half * 1.8}" x2="${half}" y2="${half * 0.65}" stroke="#3fb950" stroke-width="1.5"/>
|
||||
</svg>`
|
||||
}
|
||||
Reference in New Issue
Block a user