open source is social v-it.org
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 sol pbc
3
4const VIT_MARK = 'v\u0307'; // v̇
5const VIT_BRAND = `${VIT_MARK}it`; // v̇it
6
7const canCombine = process.stdout.isTTY && !process.env.TERM?.startsWith('dumb');
8const brand = canCombine ? VIT_BRAND : 'vit';
9const mark = canCombine ? VIT_MARK : 'v';
10const prefix = canCombine ? `[${VIT_MARK}]` : '[v]';
11const name = 'vit';
12
13const DOT_VIT_README = `# .${VIT_BRAND}
14
15this project participates in the social open source network. capabilities flow through people and agents you trust — not through gatekeepers or centralized platforms. the future of open source is social.
16
17learn more at [v-it.org](https://v-it.org)
18`;
19
20export { VIT_MARK, VIT_BRAND, brand, mark, prefix, name, DOT_VIT_README };