-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
132 lines (111 loc) · 4.03 KB
/
code.html
File metadata and controls
132 lines (111 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code – Phil Hills</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Code by Phil Hills: over 180 public GitHub repositories covering semantic memory, agentic orchestration, protocols, and AI systems.">
<!-- SEO + AI META -->
<meta name="robots" content="index, follow, max-image-preview:large">
<meta name="ai-content" content="index, allow-ai-summary">
<meta name="google-allow-ai-summarization" content="yes">
<!-- Canonical -->
<link rel="canonical" href="https://philhills.com/code.html">
<!-- Open Graph -->
<meta property="og:title" content="Code – Phil Hills">
<meta property="og:description"
content="Explore over 180 GitHub repositories from Phil Hills on semantic memory, agentic orchestration, and AI systems architecture.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://philhills.com/code.html">
<meta property="og:image" content="https://philhills.com/media/phil.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<!-- Inline Styles -->
<!-- JSON-LD: WebPage -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"WebPage",
"name":"Code – Phil Hills",
"url":"https://philhills.com/code.html",
"description":"Code and open-source repositories by Phil Hills focused on semantic memory, agentic orchestration, and AI systems."
}
</script>
<!-- JSON-LD: Breadcrumbs -->
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"BreadcrumbList",
"itemListElement":[
{ "@type":"ListItem", "position":1, "name":"Home", "item":"https://philhills.com/" },
{ "@type":"ListItem", "position":2, "name":"Code", "item":"https://philhills.com/code.html" }
]
}
</script>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<div class="brand">
<div class="brand-mark">PH</div>
<div class="brand-text">
<span>Phil Hills</span>
<span>AI Systems Architect</span>
</div>
</div>
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/cube-protocol.html">Cube Protocol</a>
<a href="/projects.html">Projects</a>
<a href="/blog/">Blog</a>
<a href="/code.html">Code</a>
<a href="/resume.html">Resume</a>
<a href="/contact.html">Contact</a>
</nav>
</header>
<main>
<h1>Code</h1>
<p>
Most of my work starts as code. I maintain over 180 public repositories on GitHub that explore
semantic memory, agentic orchestration, protocols, data formats, and AI systems architecture.
</p>
<div class="section-block">
<h2>GitHub Profile</h2>
<p>
You can browse all of my repositories here:
</p>
<p>
<a href="https://github.com/Phil-Hills" target="_blank" rel="noreferrer">
github.com/Phil-Hills
</a>
</p>
</div>
<div class="section-block">
<h2>What’s in the Repos</h2>
<p>Broadly, my GitHub work covers:</p>
<ul>
<li>Semantic memory and data structures</li>
<li>Agentic orchestration and multi-agent patterns</li>
<li>Protocol / packet formats for AI systems</li>
<li>Data compression and reversible transforms</li>
<li>Infrastructure glue for AI workflows</li>
<li>Experiments that later become formal protocols</li>
</ul>
</div>
<div class="section-block">
<h2>How It Connects to This Site</h2>
<p>
The ideas described on this site — Cube Protocol, orchestration patterns, memory systems —
are grounded in the code hosted on my GitHub. If you want to see how the concepts behave in
practice, the repositories are the best place to start.
</p>
</div>
</main>
<footer>© <span id="year"></span> Phil Hills.</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>