Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First blog post #56

Merged
merged 5 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as fs from 'fs';
import tailwind from "@astrojs/tailwind";
import { Graphviz } from "@hpcc-js/wasm";
import rehypeGraphviz from "rehype-graphviz";
import starlightBlog from 'starlight-blog';

let sidebar = JSON.parse(fs.readFileSync("generated/sidebar.json"));
let redirects = JSON.parse(fs.readFileSync("generated/redirects.json"));
Expand All @@ -22,6 +23,7 @@ export default defineConfig({
customCss: [
'./src/tailwind.css',
],
plugins: [starlightBlog()],
social: {
github: config.urls.repo,
},
Expand Down
155 changes: 150 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"marked": "^14.1.2",
"rehype-graphviz": "^0.3.0",
"sharp": "^0.32.5",
"starlight-blog": "^0.16.0",
"tailwindcss": "^3.4.10",
"vite-plugin-radar": "^0.9.6"
},
Expand Down
5 changes: 3 additions & 2 deletions src/content.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import { defineCollection, z } from 'astro:content';
import { docsSchema } from '@astrojs/starlight/schema';
import { docsLoader } from "@astrojs/starlight/loaders";
import { blogSchema } from 'starlight-blog/schema';

export const collections = {
docs: defineCollection({
loader: docsLoader(),
schema: docsSchema({
extend: ({ doc }) => {
return z.object({
extend: (context) => {
return blogSchema(context).extend({
isAEP: z.optional(z.boolean()),
created: z.optional(z.date()),
updated: z.optional(z.date()),
Expand Down
83 changes: 83 additions & 0 deletions src/content/docs/blog/2024-in-review.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
---
title: AEP's 2024 Year in Review
date: 2024-12-19
authors:
- name: Seyed Ahmad
- name: Alex Stephen
- name: Yusuke Tsutsumi
---
# **Building Better APIs Together: AEP's 2024 Year in Review**

As we close out 2024, we want to share the significant strides the API Enhancement Proposals (AEP) project has made in creating a more cohesive API ecosystem. What started as a fork of Google's API Improvement Proposals has evolved into something much more ambitious: an open, community-driven standard for building resource-oriented APIs that work consistently across different protocols and platforms.

rambleraptor marked this conversation as resolved.
Show resolved Hide resolved
## **The Vision Takes Shape**

This year clarified our core belief that API design shouldn't be a bikeshedding honeypot. By collecting hard-won design patterns from across the industry, we've worked to narrow the decisions API producers need to make while improving the experience for API consumers. Our approach focuses on resource-oriented design principles that can be expressed in both Protocol Buffers and OpenAPI, making AEPs protocol-agnostic while maintaining strong opinions about what makes APIs more usable and maintainable.

## **Major Technical Achievements**

### **The AEP Compiler ([aepc](https://github.com/aep-dev/aepc))**

We introduced aepc, our service compiler that transforms concise resource definitions into fully-specified APIs. With just a few dozen lines of YAML describing your resources and their relationships, aepc generates complete Protocol Buffer and OpenAPI specifications that adhere to AEP standards. This dramatically reduces the boilerplate needed to create consistent APIs while enforcing best practices through generation rather than just validation.

aepc is just a prototype with no official release at this moment, but it has been very useful, producing AEP-compliant OpenAPI and protobuf specifications that are used as examples in the specification.

### [**aepcli**](https://github.com/aep-dev/aepcli) **0.1: A Command-Line Interface for Everyone**

The launch of [aepcli](https://github.com/aep-dev/aepcli) marked a significant milestone in our tooling journey. Rather than requiring every API provider to build their own CLI, aepcli dynamically generates a powerful command-line interface from any AEP-compliant API's OpenAPI specification. This client-side approach means new API features are immediately available without requiring CLI updates, solving a common pain point in API tooling.

### **The AEP Explorer**
rambleraptor marked this conversation as resolved.
Show resolved Hide resolved

To complement our command-line tools, we developed a web-based UI for browsing and interacting with AEP-compliant APIs. This provides a more visual way to understand and experiment with APIs while maintaining the same consistent interaction patterns that make AEPs valuable.

### **Enhanced Linting Capabilities**

A major focus this year was improving our linting capabilities, particularly for OpenAPI specifications. Mike Kistler led the effort to revitalize our OpenAPI linter, implementing rules for key AEPs including AEP-132 (List methods) and AEP-135. The linter helps teams validate their APIs against AEP guidance, catching common issues early in the development process.
rambleraptor marked this conversation as resolved.
Show resolved Hide resolved

The linter's approach balances pragmatism with standards enforcement \- while some rules are mandatory, others can be selectively adopted based on an organization's needs. This flexibility helps teams gradually adopt AEP practices while maintaining consistent APIs. The project uses Spectral as its foundation, allowing teams to build on an established tooling ecosystem while adding AEP-specific validations.

To help teams get started, we've included comprehensive test cases and example APIs that demonstrate proper implementation of AEP patterns. The linter has already helped identify areas where our documentation needed clarification, particularly around operation IDs and resource naming conventions.

### **Improved Infrastructure**

A major focus this year was improving the components used for learning about the AEP standards and enforcing them in our organization.

Mike Kistler and Alex Stephen led efforts to build out linting against OpenAPI specifications and Protobuf interfaces. The linter helps teams validate their APIs against AEP guidance, catching common issues early in the development process.

rambleraptor marked this conversation as resolved.
Show resolved Hide resolved
To help teams get started, we've built comprehensive test cases and example APIs that demonstrate proper implementation of AEP patterns. The linters have already helped identify areas where our documentation needed clarification, particularly around operation IDs and resource naming conventions.

Additionally, we've built out a new aep.dev website based on a new framework to help highlight our guidance and to help the team release new content over time.

## **Community Growth**

### **The March Barn Raising**

On Pi Day (March 14), we held our first community "barn raising" event, bringing together contributors from across companies and time zones. The event focused on improving documentation, adding OpenAPI examples, and making AEPs more accessible to newcomers. This collaborative effort helped us identify and address gaps in our guidance while strengthening our community bonds.

### **Expanding Global Reach**

Recognizing our growing international community, we established EU-friendly meeting times and welcomed contributors from companies like DoubleVerify, providing valuable feedback on real-world AEP adoption. This led to improvements in our documentation and examples, particularly around pagination and custom methods.

### **Educational Content**

We launched the [@aepdev](https://www.youtube.com/@aepdev) YouTube channel featuring detailed demonstrations of our tooling and explanations of AEP concepts. These videos help newcomers understand both the technical details and the broader vision of what we're building.

## **Looking Forward to 2025**

As we enter the new year, our focus areas include:

1. Expanding our linting tools across both Protocol Buffer and OpenAPI specifications
2. Building more client generators, including Terraform providers and Kubernetes operators
3. Working with the OpenAPI community on resource-oriented API patterns
4. Supporting more companies in adopting AEPs, with clear migration paths and tooling support

## **Get Involved**

We're building AEPs in the open and welcome contributions of all kinds. You can join us:

* On CNCF Slack in the \#aep channel
* At our weekly community meetings (Fridays at 11:30am PT)
* On GitHub at [github.com/aep-dev](https://github.com/aep-dev)
* Through our documentation at [aep.dev](https://aep.dev)

Whether you're building new APIs or working to improve existing ones, we believe AEPs can help make that process more consistent and maintainable. Join us in building better APIs together\!
Loading