MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / isMachineOwned

Function isMachineOwned

src/skills/provenance.ts:38–40  ·  view source on GitHub ↗
(skill: ProvenanceLike | undefined | null)

Source from the content-addressed store, hash-verified

36
37/** A pristine, machine-captured skill the loop is free to replace/curate. */
38export function isMachineOwned(skill: ProvenanceLike | undefined | null): boolean {
39 return !!skill && !isProtected(skill);
40}
41
42export interface OverwriteDecision {
43 allowed: boolean;

Callers 1

Calls 1

isProtectedFunction · 0.85

Tested by

no test coverage detected