Skip to content

Commit 9e50d75

Browse files
authored
What 75 students shipped in one semester with Jac (#46)
* Add blog post: What 75 students shipped in one semester with Jac * Update blog post: What 75 students shipped in one semester with Jac * Style 449 repost with lead, stat grid, pull quote, and CTA * Revert decorative styling; keep repost concise * Style 449 repost with lead, pull quote, and CTA * Make showcase intro a callout and tighten copy * Tighten showcase intro and merge stack section into one para * Bold key phrases in the stack section * Bold the why-Jac-fits sentences in the stack section * Clarify the glue-work sentence * Restore original stack-section wording, no bold * Restore stack section to original two paragraphs * Retitle stack section to One language, one semester * Retitle showcase section and clarify its lead-in * Add transition between glue-work and single-language paragraphs * Collapse closing section into a single CTA box * Upgrade CTA to rich card variant and clarify products line * Bold CTA opener and drop documentation link * Update blog post: What 75 students shipped in one semester with Jac * Update blog post: What 75 students shipped in one semester with Jac
1 parent d89aa1f commit 9e50d75

2 files changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
date: 2026-06-29
3+
authors:
4+
- jaseci-team
5+
categories:
6+
- Community
7+
- Developers
8+
slug: 449-project-repost
9+
repost: true
10+
repost_url: "https://cse.engin.umich.edu/stories/students-build-agentic-ai-tools-for-work-travel-wellness"
11+
repost_source: "Students build agentic AI tools for work, travel, wellness"
12+
draft: true
13+
---
14+
15+
# What 75 students shipped in one semester with Jac
16+
17+
<p class="lead" markdown="1">The University of Michigan's CSE division just published a [story on the final showcase for **EECS 449: Conversational AI**](https://cse.engin.umich.edu/stories/students-build-agentic-ai-tools-for-work-travel-wellness), where **75+ students**, working in teams, built **17 full-stack AI applications** in a single Winter semester, most of them in [Jac](https://www.jaseci.org/).</p>
18+
19+
<!-- more -->
20+
21+
**These products aren't chatbot demos.** They are live and full-stack: conversational interfaces, visual reasoning, document analysis, multimodal input, and multi-step agentic workflows, built for everything from academic advising and health to travel, finance, and career prep.
22+
23+
## One language, one semester
24+
25+
Building a full AI application usually means stitching together separate systems: one framework for the interface, another for the backend, a database layer underneath, and more tooling to call models and orchestrate workflows. Each seam is its own thing to learn, wire up, and keep from breaking, and for a four-person team on a deadline, a lot of the semester can disappear into that glue work instead of the product.
26+
27+
That is exactly where Jac came in. Its single-language design is a big reason a semester was enough: Jac and the Jaseci runtime let a team handle the interface, the application logic, the data, and the AI itself in one language. AI calls are part of the language rather than a bolted-on service, and Jac stays model-agnostic underneath, so teams could reach for whatever model fit without re-architecting anything. Less time on plumbing, more on the actual problem.
28+
29+
## From the showcase
30+
31+
The range shows what Jaseci made possible. Here are three standouts:
32+
33+
[**Skooch.ai**](http://skooch.ai) is an adaptive scheduling assistant that learns someone's focus windows and energy patterns, then places flexible tasks around fixed commitments from a plain-language prompt like "build me a study plan."
34+
35+
[**MaizeMind.com**](http://maizemind.com) turns half-formed notes into an interactive argument map, surfacing claims, evidence, and contradictions without ghostwriting, with Jac's graph data model mapping directly onto the argument structure.
36+
37+
[**EdgeCastApp.com**](http://edgecastapp.com) is a research terminal for prediction-market traders that links live Kalshi markets to a real-time newsfeed and an agent that already knows which market you're viewing.
38+
39+
The same story sits underneath all three: Jaseci was the common thread that made them feasible on a student timeline, letting each team keep the interface, the logic, the data, and the AI in one application instead of a stack of integrations.
40+
41+
You can explore the full lineup, with every team, demo videos, live apps, and GitHub repos, on the [EECS 449 projects showcase](https://jaseci-labs.github.io/eecs-449-projects/), and read more in the [U-M story](https://cse.engin.umich.edu/stories/students-build-agentic-ai-tools-for-work-travel-wellness).
42+
43+
<div class="cta cta-rich" markdown="1">
44+
**Want to build something full-stack in a single language?** Install [Jac](https://www.jaseci.org/) and scaffold your first app in a few minutes, with the backend, frontend, and AI in one codebase, the same setup behind these 17 student projects.
45+
46+
[Try it yourself](https://docs.jaseci.org/){ .cta-button }
47+
</div>

styles/prose.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,27 @@
379379
transform: translateY(-1px);
380380
}
381381

382+
/* Rich variant — a self-contained card (full hairline border + soft shadow
383+
instead of the left accent bar) with a little more breathing room and a
384+
button that lifts off the surface. */
385+
.prose .cta.cta-rich {
386+
margin: 3.5em 0 1em;
387+
padding: 2.75rem 2.5rem;
388+
border-left: none;
389+
border: 1px solid var(--rule);
390+
border-radius: 16px;
391+
box-shadow: var(--shadow-card);
392+
}
393+
.prose .cta.cta-rich a.cta-button {
394+
margin-top: 1.4rem;
395+
padding: 0.8rem 1.9rem;
396+
box-shadow: 0 8px 20px -8px var(--accent);
397+
}
398+
.prose .cta.cta-rich a.cta-button:hover {
399+
transform: translateY(-2px);
400+
box-shadow: 0 12px 26px -8px var(--accent);
401+
}
402+
382403
/* Lead paragraph — the standfirst right under the title. A soft card on a warm
383404
neutral fill (not an accent tint, which reads synthetic) with a thin accent
384405
edge, same serif as the body, justified to match the article. */

0 commit comments

Comments
 (0)