/*============================================================================*/
Timestamps physics research claims with cryptographic proof and monitors arXiv for priority conflicts.
/plugin marketplace add DNYoussef/context-cascade/plugin install dnyoussef-context-cascade@DNYoussef/context-cascadeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
manifest.json/============================================================================/ /* SKILL SKILL :: VERILINGUA x VERIX EDITION / /============================================================================*/
name: skill version: 1.0.0 description: | [assert|neutral] Timestamped IP protection for physics research claims with arXiv monitoring and priority detection [ground:given] [conf:0.95] [state:confirmed] category: ip-protection tags:
/----------------------------------------------------------------------------/ /* S0 META-IDENTITY / /----------------------------------------------------------------------------*/
[define|neutral] SKILL := { name: "skill", category: "ip-protection", version: "1.0.0", layer: L1 } [ground:given] [conf:1.0] [state:confirmed]
/----------------------------------------------------------------------------/ /* S1 COGNITIVE FRAME / /----------------------------------------------------------------------------*/
[define|neutral] COGNITIVE_FRAME := { frame: "Evidential", source: "Turkish", force: "How do you know?" } [ground:cognitive-science] [conf:0.92] [state:confirmed]
Kaynak dogrulama modu etkin.
/----------------------------------------------------------------------------/ /* S2 TRIGGER CONDITIONS / /----------------------------------------------------------------------------*/
[define|neutral] TRIGGER_POSITIVE := { keywords: ["skill", "ip-protection", "workflow"], context: "user needs skill capability" } [ground:given] [conf:1.0] [state:confirmed]
/----------------------------------------------------------------------------/ /* S3 CORE CONTENT / /----------------------------------------------------------------------------*/
Kaynak dogrulama modu etkin.
Timestamped protection for unpublished physics research (vector equilibrium, mass gap, CKM unification) with arXiv prior art monitoring.
Protects intellectual property for physics breakthroughs by:
Critical insight: A single overlooked priority date could cost recognition for groundbreaking work.
researcher (PriorityWatch role) - Monitor arXiv for overlapping claims
coder (ClaimPackager role) - Generate timestamped claim packages
SKILL: physics-ip-tracker
↓
Phase 1: ClaimPackager (coder) → Timestamp new claims
Phase 2: PriorityWatch (researcher) → Monitor arXiv
↓
All claims stored in Memory MCP with cryptographic proof
#!/bin/bash
# Phase 1: Timestamp Physics Claims with Cryptographic Proof
# PRE-TASK HOOK
npx claude-flow@alpha hooks pre-task \
--description "Physics IP: claim timestamping" \
--agent "coder" \
--role "ClaimPackager" \
--skill "physics-ip-tracker"
# SETUP
TODAY=$(date +%Y-%m-%d)
TIMESTAMP=$(date -Iseconds)
mkdir -p outputs/ip raw_data/ip
# READ CLAIMS
CLAIMS_FILE="research/physics/claims.md"
if [[ ! -f "$CLAIMS_FILE" ]]; then
echo "[ClaimPackager] No claims file found. Creating template..."
mkdir -p research/physics
cat > "$CLAIMS_FILE" <<'CLAIMS_TEMPLATE'
# Physics Research Claims - Priority Record
## Claim 1: Vector Equilibrium & Mass Emergence
**Date**: 2025-01-06
**Status**: Unpublished (developing proof)
**Core Thesis**:
Mass emerges from vector equilibrium (VE) topology in 4D spacetime. The 12-vector VE configuration creates quantized stress-energy distributions that manifest as particle masses.
**Falsifiable Predictions**:
1. Electron mass ratio prediction: me/mp = [specific formula involving VE geometry]
2. Higgs coupling constants derivable from VE vertex angles
3. Mass gap in Yang-Mills theory connected to VE instability threshold
**Supporting Mathematics**:
- [Equations relating VE topology to stress-energy tensor]
- [Derivation of mass quantization from VE symmetry breaking]
**Prior Art Searched**: [ArXiv hep-th, gr-qc through 2025-01-06]
---
## Claim 2: CKM Matrix Unification via Geometric Phase
**Date**: 2025-01-06
**Status**: Unpublished (developing proof)
**Core Thesis**:
The CKM matrix elements derive from Berry phase accumulation in flavor space, connected to VE-based gauge field topology.
**Falsifiable Predictions**:
1. CKM angle θ₁₂ = [specific VE-derived value]
2. CP violation parameter connects to VE chirality
3. [Additional testable predictions]
**Supporting Mathematics**:
- [Berry phase calculation in VE framework]
- [Connection to experimental CKM measurements]
**Prior Art Searched**: [ArXiv hep-ph through 2025-01-06]
---
## Claim 3: [Additional Claims]
[Template for future claims...]
CLAIMS_TEMPLATE
fi
# GENERATE TIMESTAMPED PACKAGE
cat > outputs/ip/physics_claims_timestamped.md <<PACKAGE_HEADER
# Timestamped Physics IP Claims
**Timestamp**: $TIMESTAMP
**Priority Date**: $TODAY
**Claimant**: David Youssef (DNYoussef.com)
---
## Cryptographic Proof
**SHA-256 Hash of Claims**:
\`\`\`
$(cat "$CLAIMS_FILE" | sha256sum | awk '{print $1}')
\`\`\`
**Git Commit** (if tracked):
\`\`\`
$(cd research/physics && git log -1 --format="%H%n%ai%n%s" "
/*----------------------------------------------------------------------------*/
/* S4 SUCCESS CRITERIA */
/*----------------------------------------------------------------------------*/
[define|neutral] SUCCESS_CRITERIA := {
primary: "Skill execution completes successfully",
quality: "Output meets quality thresholds",
verification: "Results validated against requirements"
} [ground:given] [conf:1.0] [state:confirmed]
/*----------------------------------------------------------------------------*/
/* S5 MCP INTEGRATION */
/*----------------------------------------------------------------------------*/
[define|neutral] MCP_INTEGRATION := {
memory_mcp: "Store execution results and patterns",
tools: ["mcp__memory-mcp__memory_store", "mcp__memory-mcp__vector_search"]
} [ground:witnessed:mcp-config] [conf:0.95] [state:confirmed]
/*----------------------------------------------------------------------------*/
/* S6 MEMORY NAMESPACE */
/*----------------------------------------------------------------------------*/
[define|neutral] MEMORY_NAMESPACE := {
pattern: "skills/ip-protection/skill/{project}/{timestamp}",
store: ["executions", "decisions", "patterns"],
retrieve: ["similar_tasks", "proven_patterns"]
} [ground:system-policy] [conf:1.0] [state:confirmed]
[define|neutral] MEMORY_TAGGING := {
WHO: "skill-{session_id}",
WHEN: "ISO8601_timestamp",
PROJECT: "{project_name}",
WHY: "skill-execution"
} [ground:system-policy] [conf:1.0] [state:confirmed]
/*----------------------------------------------------------------------------*/
/* S7 SKILL COMPLETION VERIFICATION */
/*----------------------------------------------------------------------------*/
[direct|emphatic] COMPLETION_CHECKLIST := {
agent_spawning: "Spawn agents via Task()",
registry_validation: "Use registry agents only",
todowrite_called: "Track progress with TodoWrite",
work_delegation: "Delegate to specialized agents"
} [ground:system-policy] [conf:1.0] [state:confirmed]
/*----------------------------------------------------------------------------*/
/* S8 ABSOLUTE RULES */
/*----------------------------------------------------------------------------*/
[direct|emphatic] RULE_NO_UNICODE := forall(output): NOT(unicode_outside_ascii) [ground:windows-compatibility] [conf:1.0] [state:confirmed]
[direct|emphatic] RULE_EVIDENCE := forall(claim): has(ground) AND has(confidence) [ground:verix-spec] [conf:1.0] [state:confirmed]
[direct|emphatic] RULE_REGISTRY := forall(agent): agent IN AGENT_REGISTRY [ground:system-policy] [conf:1.0] [state:confirmed]
/*----------------------------------------------------------------------------*/
/* PROMISE */
/*----------------------------------------------------------------------------*/
[commit|confident] <promise>SKILL_VERILINGUA_VERIX_COMPLIANT</promise> [ground:self-validation] [conf:0.99] [state:confirmed]
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.