-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
157 lines (153 loc) · 6.95 KB
/
index.html
File metadata and controls
157 lines (153 loc) · 6.95 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="SCIP (pronunciation: "skip") is a language-agnostic protocol for indexing source code, which can be used to power code navigation functionality such as Go to definition and Find references." />
<title>SCIP Code Intelligence Protocol</title>
<link rel="icon" href="./assets/images/scip-icon-color.svg" type="image/svg+xml" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div class="promo-bar" id="promo-bar" role="region" aria-label="Blog announcement" hidden>
<div class="promo-bar__inner">
<a class="promo-bar__link" href="#" target="_blank" rel="noopener noreferrer">
<span class="promo-bar__label">New</span>
<span class="promo-bar__title">The Future of SCIP</span>
<span class="promo-bar__cta">Read post</span>
</a>
<button type="button" class="promo-bar__close" aria-label="Dismiss announcement">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true">
<path
d="M4 4l8 8M12 4l-8 8"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
/>
</svg>
</button>
</div>
</div>
<div class="page">
<header class="nav">
<div class="nav-title">
<a href="./index.html">
<img class="logo" src="./assets/images/scip-logo-color.svg" alt="SCIP" />
</a>
</div>
<nav class="nav-links">
<a href="./docs.html">Docs</a>
<a href="./governance.html">Governance</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code/scip" target="_blank" rel="noopener noreferrer">GitHub</a>
</nav>
</header>
<section class="hero" id="about">
<div>
<span class="pill">Code Intelligence Protocol</span>
<h1 class="hero-title">
Standardizing how tools describe code.
</h1>
<p class="hero-subtitle">
SCIP (pronunciation: "skip") is a language-agnostic protocol
for indexing source code, which can be used to power code
navigation functionality such as
<span class="feature-tag" data-tooltip="Jump to where a name is first created and explained." tabindex="0">Go to definition</span><span class="feature-tag-expansion"> — opens where a name is first created</span> and
<span class="feature-tag" data-tooltip="See every place where this name is used in the whole project." tabindex="0">Find references</span><span class="feature-tag-expansion"> — every use of that name in the project</span>.
</p>
<div class="cta-row"></div>
</div>
<div class="card">
<div class="tag">Key features</div>
<ul class="list">
<li>
<a
class="list-link"
href="https://github.com/scip-code/scip/blob/main/scip.proto"
target="_blank"
rel="noopener noreferrer"
>Standardized index format</a>
</li>
<li>Language-agnostic schema for indexers</li>
<li>Interoperable tools and integrations</li>
</ul>
</div>
</section>
<section class="section" id="tools">
<h2 class="section-title">Indexers and tooling using SCIP</h2>
<p class="section-subtitle">
SCIP's standard index format is already emitted by a growing ecosystem
of indexers across major languages, which is in tools like <a class="list-link" href="https://sourcegraph.com/search" target="_blank" rel="noopener noreferrer">Sourcegraph</a>, <a class="list-link" href="https://searchfox.org/" target="_blank" rel="noopener noreferrer">Mozilla Searchfox</a>, <a class="list-link" href="https://rust-analyzer.github.io/" target="_blank" rel="noopener noreferrer">rust-analyzer</a>, and <a class="list-link" href="https://glean.software/" target="_blank" rel="noopener noreferrer">Glean</a>.
</p>
<div class="card">
<ul class="list list-columns">
<li>
<a href="https://github.com/sourcegraph/scip-dotnet">
C#, Visual Basic
</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-clang">C++, C</a>
</li>
<li>
<a href="https://github.com/Workiva/scip-dart">Dart</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-go">Go</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-java">
Java, Scala, Kotlin
</a>
</li>
<li>
<a href="https://github.com/davidrjenni/scip-php">PHP</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-python">Python</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-ruby">Ruby</a>
</li>
<li>
<a href="https://github.com/rust-lang/rust-analyzer">Rust</a>
</li>
<li>
<a href="https://github.com/sourcegraph/scip-typescript">
TypeScript, JavaScript
</a>
</li>
</ul>
</div>
</section>
<section class="section" id="contribute">
<h2 class="section-title">Contribute to SCIP</h2>
<div class="split">
<div>
<p>
Questions, suggestions, code, and docs contributions are welcome.
The development docs outline project structure and common
workflows. Find us on <a class="list-link" href="https://github.com/scip-code/scip">GitHub</a>.
Please read the <a class="list-link" href="./code-of-conduct.html">Code of Conduct</a> and
<a class="list-link" href="./governance.html">Governance</a> pages before you contribute.
</p>
<div class="cta-row">
</div>
</div>
</div>
</section>
<footer class="footer">
<div>© 2026 The SCIP Authors | Apache-2.0 license</div>
<div class="footer-links">
<a href="./docs.html">Docs</a>
<a href="./artwork.html">Artwork</a>
<a href="./code-of-conduct.html">Code of conduct</a>
<a href="./governance.html">Governance</a>
<a href="https://discord.gg/w5TEzebTPk" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://github.com/scip-code/scip" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</footer>
</div>
<script src="./assets/js/promo-bar.js" defer></script>
</body>
</html>