-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
58 lines (55 loc) · 1.53 KB
/
Copy pathindex.js
File metadata and controls
58 lines (55 loc) · 1.53 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
import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
const FeatureList = [
{
title: 'Constrain',
description: (
<>
Define what AI agents can do with signed <code>.aflock</code> policy files.
Set spend limits, tool restrictions, file access patterns, and domain allowlists.
</>
),
},
{
title: 'Attest',
description: (
<>
Every agent action produces a cryptographically signed in-toto attestation.
The agent never sees the signing key — unforgeable proof of compliance.
</>
),
},
{
title: 'Verify',
description: (
<>
Verify constraint compliance with a 6-phase verification algorithm.
Signature verification is implemented; identity, Rego, AI evaluation, and sublayout recursion are <a href="https://github.com/aflock-ai/aflock/issues/16">in active development</a>.
</>
),
},
];
function Feature({title, description}) {
return (
<div className={clsx('col col--4')}>
<div className="text--center padding-horiz--md" style={{paddingTop: '2rem'}}>
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures() {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}