MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / Skills

Method Skills

backend/session.go:352–369  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

350
351func (c *SessionController) FenceToken() int64 { return c.fenceToken }
352
353func (c *SessionController) RuntimeIdentity() cluster.RuntimeIdentity {
354 return c.identity
355}
356
357func (c *SessionController) RuntimeConfig() config.Config {
358 c.stateMu.Lock()
359 state := c.state
360 c.stateMu.Unlock()
361 cfg := c.cfg
362 if state != nil && state.YoloEnabled() {
363 cfg.Yolo = true
364 }
365 return cfg
366}
367
368func (c *SessionController) Mount() {
369 c.stateMu.Lock()
370 state := c.state
371 c.stateMu.Unlock()
372 c.ui.MountStateSnapshot(state)

Callers 1

dispatchResultMethod · 0.80

Calls 2

SkillRegistryMethod · 0.80
ListUserInvocableMethod · 0.80

Tested by

no test coverage detected