helixevo 0.2.37 → 0.2.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,7 +34,7 @@ export default function ProjectsClient({ profiles, skillCount }: { profiles: Pro
34
34
  const [inputMode, setInputMode] = useState<InputMode>('local')
35
35
  const [projectPath, setProjectPath] = useState('')
36
36
  const [githubUrl, setGithubUrl] = useState('')
37
- const [cloneDir, setCloneDir] = useState('~/projects')
37
+ const [cloneDir, setCloneDir] = useState('~/HelixEvo')
38
38
  const [setupState, setSetupState] = useState<SetupState>('idle')
39
39
  const [output, setOutput] = useState('')
40
40
  const outputRef = useRef<HTMLPreElement | null>(null)
@@ -222,8 +222,16 @@ export default function ProjectsClient({ profiles, skillCount }: { profiles: Pro
222
222
  background: 'var(--bg-input)', color: 'var(--text)',
223
223
  }}
224
224
  />
225
- <div style={{ fontSize: 10, color: 'var(--text-muted)', marginTop: 4 }}>
226
- Use <code style={{ fontSize: 9 }}>.</code> for the current directory, or an absolute path
225
+ <div style={{ fontSize: 10, color: 'var(--text-muted)', marginTop: 6, display: 'flex', alignItems: 'center', gap: 6, flexWrap: 'wrap' }}>
226
+ <span>Quick select:</span>
227
+ {['.', '~/Documents/GitHub', '~/Desktop', '~/HelixEvo', ...profiles.map(p => p.path).filter(p => !['.', '~/Documents/GitHub', '~/Desktop', '~/HelixEvo'].includes(p))].map(p => (
228
+ <button key={p} onClick={() => setProjectPath(p)} style={{
229
+ padding: '1px 8px', fontSize: 10, background: projectPath === p ? 'var(--green-light)' : 'var(--bg-section)',
230
+ border: `1px solid ${projectPath === p ? 'var(--green-border)' : 'var(--border-subtle)'}`,
231
+ borderRadius: 4, cursor: 'pointer', color: projectPath === p ? 'var(--green)' : 'var(--text-dim)',
232
+ fontFamily: 'var(--font-mono)',
233
+ }}>{p}</button>
234
+ ))}
227
235
  </div>
228
236
  </div>
229
237
  {setupState !== 'analyzing' ? (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helixevo",
3
- "version": "0.2.37",
3
+ "version": "0.2.38",
4
4
  "description": "Self-evolving skill ecosystem for AI agents. Skills and projects co-evolve through multi-judge evaluation and a Pareto frontier.",
5
5
  "type": "module",
6
6
  "bin": {