open source is social v-it.org
0

Configure Feed

Select the types of activity you want to include in your feed.

vit / src / postinstall.js
240 B 12 lines
1// SPDX-License-Identifier: MIT 2// Copyright (c) 2026 sol pbc 3 4import { ensureSkill } from './lib/skill-install.js'; 5 6try { 7 const r = ensureSkill(); 8 if (r.ok) console.log('vit: using-vit skill installed'); 9} catch { 10} 11 12process.exit(0);