The official website for Asimi CLI - a safe, opinionated coding agent for the terminal.
This site is built with Hugo.
- Hugo (extended version recommended)
# Start the development server
hugo server -D
# Build for production
hugo.
├── content/
│ └── blog/ # Blog posts
├── layouts/
│ ├── index.html # Homepage
│ ├── 404.html # 404 page
│ ├── blog/
│ │ ├── list.html # Blog listing
│ │ └── single.html # Blog post
│ └── _default/
│ └── single.html # Default single page
├── static/ # Static assets
└── hugo.toml # Hugo configuration
Create a new markdown file in content/blog/:
hugo new blog/my-new-post.mdOr manually create a file with frontmatter:
---
title: "My Post Title"
date: 2025-01-15
description: "A brief description"
tags: ["tag1", "tag2"]
---
Your content here...The site is deployed automatically via Netlify when changes are pushed to the main branch.
MIT