---
title: "armand-salle.fr developer resources"
description: "API, machine readable formats, discovery documents, content negotiation, and support for armand-salle.fr."
canonical: "https://armand-salle.fr/developers"
last-updated: "2026-08-24"
---

# armand-salle.fr developer resources

Armand Sallé's website is a public portfolio and technical blog. It exposes a small, unauthenticated, read only API for canonical profile data and resource discovery. It does not accept write operations, issue API keys, or provide an authenticated product sandbox.

## Quickstart

Fetch the agent index:

```sh
curl -fsS https://armand-salle.fr/llms.txt
```

Request the homepage as Markdown:

```sh
curl -fsS -H 'Accept: text/markdown' https://armand-salle.fr/
```

Discover all public HTML routes through the sitemap:

```sh
curl -fsS https://armand-salle.fr/sitemap-index.xml
```

Fetch the structured profile:

```sh
curl -fsS https://armand-salle.fr/api/profile.json
```

Inspect the OpenAPI 3.1 contract at [openapi.json](https://armand-salle.fr/openapi.json). The resource index is available at [api/resources.json](https://armand-salle.fr/api/resources.json), and the RFC 9727 catalog is available at [.well-known/api-catalog](https://armand-salle.fr/.well-known/api-catalog).

## Authentication and sandbox

No API key is required. Every documented endpoint is public, deterministic, and read only. There are no write actions, so a sandbox is neither required nor advertised. Automated clients should use ordinary conditional requests, respect HTTP status codes, and avoid aggressive request rates.

## CLI

The repository includes a small zero-dependency CLI for machine-readable profile and resource discovery. Until a registry package is published, run it from the official GitHub repository with `npx github:armandsalle/my-site profile --json`.

## Agent assets and source

The [public source repository](https://github.com/armandsalle/my-site) includes [repository instructions for coding agents](https://github.com/armandsalle/my-site/blob/main/AGENTS.md) and a [profile research skill](https://github.com/armandsalle/my-site/blob/main/SKILL.md). These files document safe contribution rules, canonical data sources, when to use the site, and how to cite its content.

## Support

For a broken public resource or an integration question, email armand.salle@gmail.com and include the URL, request headers, response status, and a minimal reproduction.
