Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 28 additions & 0 deletions src/commonMain/kotlin/codes/miley/model/Experience.kt
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,33 @@ val SOCKET = Experience(
),
)

val AMPERE = Experience(
id = 12345,
timespans = listOf(2024 to null),
name = "Ampere",
title = "Kotlin Multiplatform",
route = "/ampere",
summary = """
• Developing an event-driven AI agent orchestration framework built with Kotlin Multiplatform.

• Featuring a six-phase cognitive loop (PROPEL) with structured event emission for full
observability into agent reasoning.

• Enabling multi-agent coordination where agents perceive and react to each other's
reasoning in real time.
""".trimIndent(),
category = Category.PROJECT,
skills = setOf(
Skill.KOTLIN,
Skill.KOTLIN_MULTIPLATFORM,
),
topics = setOf(
Topic.AI,
),
iconUri = "/experiences/project/ampere/icon.png",
media = listOf(),
)

val STOCK_X = Experience(
id = 123,
timespans = listOf(2019 to 2022),
Expand Down Expand Up @@ -568,6 +595,7 @@ val ALL_EXPERIENCES = listOf(
GRINDR,
WALMART,
SOCKET,
AMPERE,
SHARPEN,
STOCK_X,
TROVE,
Expand Down
1 change: 1 addition & 0 deletions src/commonMain/kotlin/codes/miley/model/Topic.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package codes.miley.model

enum class Topic {
AI,
CHAT,
DATING,
E_COMMERCE,
Expand Down