Skip to content

Instantly share code, notes, and snippets.

View PrimeTimeTran's full-sized avatar
🎯
Focusing

Loi Tran PrimeTimeTran

🎯
Focusing
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Document</title>
<style>

Questions/Sought Information

  • What's your experience in registering and protecting the rights of MNCs and investors as they do business in Vietnam?

    • https://www.state.gov/reports/2023-investment-climate-statements/vietnam/ "Foreign investors are exempt from import duties on goods imported for their own use that cannot be procured locally, including machinery, vehicles, components and spare parts for machinery and equipment, raw materials, inputs for manufacturing, and construction materials."

      1. I'm unsure if it's because of language barrier, I'm from a small SME or they're unprofessional. I've tried to contact local companies but have had little success/responses? Can you help me guarantee no import duties/tariffs/ for equipment I need imported? Things I need imported are printed circuit boards(PCBs), robotic arms, 3d printers, [mri machines](https://prizmedi
npm run build && \
docker build -t primetimetran/seepdeep:v1 \
--build-arg HOST="0.0.0.0" \
--build-arg HOST_URL="https://seepdeep-api-dev-7d6537ynfa-uc.a.run.app" \
--build-arg MONGODB_URI="mongodb+srv://primetimetran:password@cluster0.xfhlaio.mongodb.net/next_unicorn" \
. --platform linux/amd64 && \
docker tag primetimetran/seepdeep:v1 us-central1-docker.pkg.dev/seepdeep-dev/seepdeep-api/v1 && \
docker push us-central1-docker.pkg.dev/seepdeep-dev/seepdeep-api/v1 && \
gcloud run deploy seepdeep-api-dev \
--image=us-central1-docker.pkg.dev/seepdeep-dev/seepdeep-api/v1 \
'''
1. Understand
BFS solution.
Heap
We want to create a heap which is a list of cells to check, and then check if we've reached the bottom right cell. If that's case, then we jsut need to return the maximum elevation/time in our path to the bottom right cell.
2. Diagram
[0, 5]

Task:

Prevent cycles in the system where users provide details/criteria for results they're seeking(archetypes of people to connect with).

Assumption:

Non malicious actor(someone prompting nonsense to burn tokens, ex. "cat", "tiger", "lion" and expecting a list of pertinent users/personas to their search).

Proposal:

Define a heuristic/s on whether or not to exit the loop programmatically. For example, has the user provided a role title, location, industry. If so we'd evaluate the prompt/details higher so can more confidently move on.

3 / 5 "important" labels filled out correctly.

# AI Agent Marketplace
[![Preview](./docs/architecture-diagram.png)](https://github.com/PrimeTimeTran/k8s-agent-marketplace-platform)
## Layered Architecture
- Marketplace
- Product Control Plane
- Infra Control Plane
- Agent Jobs/Runtime

Prompt Context Protocol

Is a protocol for agent-user collaboration in AI development.

All AI tools from CLI, IDE, and others struggle because of the same underlying problem.

They all struggle in the same ways:

  1. How does the user prompt?
@PrimeTimeTran
PrimeTimeTran / summary.md
Created July 16, 2026 04:21
Output of Revelation CLI tool of the Gideon CLI codebase.

src/agent/agent.rs

        // ENUMS:
        enum AgentAction { ReadFile(path: String), WriteFile(path: String, content: String), Finish(message: String), Current(message: String) }
        enum AgentMode { Chat, Tool }
        enum AgentObservation { ReadFile(path: String, content: String), WriteFile(path: String, success: bool), Current(message: String) }
        enum AgentStatus { Done, Waiting, Thinking, Error(_0: String) }

        // FUNCTIONS: