Skip to content

Commit 50d556f

Browse files
authored
Merge pull request #28 from RubricLab/blog/sligo-case-study
[Blog] Sligo case study
2 parents e40f22a + e1724dc commit 50d556f

File tree

5 files changed

+87
-9
lines changed

5 files changed

+87
-9
lines changed

public/images/procurement.png

1.03 MB
Loading

src/app/globals.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@
103103
@apply underline underline-offset-3 decoration-1 hover:decoration-4;
104104
}
105105

106+
article :is(strong, b) a:not(:has(button)) {
107+
@apply text-primary font-semibold;
108+
}
109+
106110
article p,
107111
article li {
108112
@apply text-secondary;
@@ -113,7 +117,7 @@
113117
}
114118

115119
article blockquote {
116-
@apply border-l-4 border-secondary/20 pl-4 font-light text-lg italic;
120+
@apply border-l-4 border-secondary/20 pl-4 font-light text-lg italic text-secondary;
117121
}
118122

119123
article aside {

src/lib/posts/gumloop-templates.mdx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { AUTHORS, CATEGORIES } from '~/lib/constants/blog'
2+
import { BlogTestimonial } from '~/ui/blog/testimonial'
23

34
export const metadata = {
45
title: "Gumloop Templates",
@@ -59,11 +60,8 @@ We're excited to continue growing alongside Gumloop as they scale.
5960

6061
[Gumloop Templates](https://gumloop.com/templates) transforms Gumloop's template ecosystem from an internal catalog into a growth engine, enabling community-driven content creation, improving organic visibility, and laying the foundation for a creator economy within the platform.
6162

62-
<div className='flex flex-col gap-0'>
63-
> "Rubric gave us the tactical engineering firepower we needed as we rapidly scaled. Professional executors who came in, crushed the task and handed it off gracefully."
64-
65-
<div className='flex flex-col items-end text-sm'>
66-
<p>Max Brodeur-Urbas</p>
67-
<p>CEO of Gumloop</p>
68-
</div>
69-
</div>
63+
<BlogTestimonial
64+
quote="Rubric gave us the tactical engineering firepower we needed as we rapidly scaled. Professional executors who came in, crushed the task and handed it off gracefully."
65+
name="Max Brodeur-Urbas"
66+
role="CEO of Gumloop"
67+
/>

src/lib/posts/sligo-case-study.mdx

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
import { AUTHORS, CATEGORIES } from '~/lib/constants/blog'
2+
import { BlogTestimonial } from '~/ui/blog/testimonial'
3+
4+
export const metadata = {
5+
title: "Partnering with Sligo AI",
6+
subtitle: "Reliability, orchestration, and enterprise hardening for an agent platform",
7+
date: "2026-04-02",
8+
author: AUTHORS.TED_SPARE,
9+
bannerImageUrl: "/images/procurement.png",
10+
category: CATEGORIES.CASE_STUDY,
11+
description: "How Rubric Labs partnered with Sligo AI on reliability, orchestration, enterprise deployment, and security guardrails as they built their agent platform."
12+
}
13+
14+
Today, **[SpendHQ](https://www.spendhq.com/) announced its acquisition of [Sligo AI](https://www.sligo.ai/)**. We're proud to have worked closely with the Sligo team through an important part of that journey.
15+
16+
- [SpendHQ Press Release](https://www.spendhq.com/press/spendhq-sligo-ai-acquisition-agentic-ai/)
17+
- [LinkedIn](https://www.linkedin.com/posts/deanthoms_big-news-today-spendhq-has-acquired-sligo-share-7445504694363504640-lSg7)
18+
19+
Over several months, Rubric partnered with Sligo across backend reliability, workflow orchestration, enterprise deployment, evaluation systems, and guardrails. The throughline stayed consistent: build AI systems that are powerful, deployable, observable, and secure in real customer environments.
20+
21+
## The challenge
22+
23+
Sligo was building an ambitious enterprise AI platform while supporting demanding customer deployments and expanding into increasingly complex agent workflows.
24+
25+
At its core, the work was about making agents work in production:
26+
27+
- reliable backend infrastructure and error handling
28+
- evaluation and monitoring systems for iteration
29+
- workflow tooling for multi-agent coordination
30+
- enterprise deployment paths across cloud environments
31+
- permissions, policy enforcement, and guardrails
32+
33+
<BlogTestimonial
34+
quote="What stood out was Rubric's ability to work across product, infrastructure, and architecture without losing sight of enterprise constraints. They contributed meaningfully to reliability, deployment, and the systems behind our agent platform."
35+
name="Daniel Bevan"
36+
role="CTO of Sligo AI"
37+
/>
38+
39+
Across the collaboration, we worked with Sligo to strengthen the platform's foundation, improve how complex agent workflows were designed and managed, support enterprise deployment needs, and add the guardrails required for real-world use.
40+
41+
The focus throughout was on turning ambitious product ideas into systems that felt reliable, practical, and secure for teams operating in enterprise environments.
42+
43+
## What stood out
44+
45+
What stood out to us was Sligo's level of rigor. The team kept returning to the practical questions that matter in enterprise AI: how systems get deployed, how they can be debugged, how permissions are enforced, how non-technical users evaluate results, and how the product experience holds up under real usage.
46+
47+
That combination of product ambition and operational discipline made the partnership especially strong.
48+
49+
<BlogTestimonial
50+
quote="Rubric moved quickly, understood the technical depth of what we were building, and consistently helped us raise the bar on execution. They were a strong partner during an important phase for Sligo."
51+
name="Matt McCarrick"
52+
role="CEO of Sligo AI"
53+
/>
54+
55+
## Congratulations again
56+
57+
Huge congratulations to **SpendHQ** and **Sligo AI** on this milestone.
58+
59+
We're proud to have partnered with Sligo during an important part of that journey, and we're excited to see what the two teams build together next.

src/ui/blog/testimonial.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
type BlogTestimonialProps = {
2+
quote: string
3+
name: string
4+
role: string
5+
}
6+
7+
export const BlogTestimonial = ({ quote, name, role }: BlogTestimonialProps) => {
8+
return (
9+
<div className="flex flex-col gap-0">
10+
<blockquote>"{quote}"</blockquote>
11+
<div className="flex flex-col items-end text-sm">
12+
<p>{name}</p>
13+
<p>{role}</p>
14+
</div>
15+
</div>
16+
)
17+
}

0 commit comments

Comments
 (0)