2 Commits

Author SHA1 Message Date
michalvankodev 67679701a8 just small edits
test / cargo test (push) Failing after 1m10s
2026-04-01 22:23:48 +02:00
michalvankodev eb8168280a feat: add Pi agent blog post, AI tooling, and SVG support
test / cargo test (push) Failing after 1m56s
Add new blog post documenting a week using the Pi CLI agent for 100% agentic development. Include AI agent configuration with custom prompts and skills to streamline content creation workflow.

- Publish "Week with my-pi-agent" article with Pi logo and screenshot assets
- Add .pi/ configuration with new-blog-post prompt and review-article skill
- Create AGENTS.md with comprehensive project documentation for AI assistants
- Fix SVG rendering to skip unsupported dimension extraction in markdown filter
- Update picture generator to handle SVG files with simple img tag
- Update syntect dependency to 5.3.0 with default-fancy features
- Swap featured segment from older post to new Pi agent article
2026-04-01 22:14:29 +02:00
3 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ jobs:
name: release name: release
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: node:24 image: node:22
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- name: cache - name: cache
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
@@ -47,7 +47,7 @@ jobs:
working-directory: axum_server working-directory: axum_server
- name: Server log - name: Server log
run: cat axum_server/server.log run: cat axum_server/server.log
- uses: actions/upload-artifact@v6 - uses: actions/upload-artifact@v4
with: with:
name: dist name: dist
path: axum_server/dist/ path: axum_server/dist/
+1 -1
View File
@@ -6,7 +6,7 @@ jobs:
name: cargo test name: cargo test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: cd axum_server && cargo test --all-features - run: cd axum_server && cargo test --all-features
+4 -4
View File
@@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
askama = { version = "0.15" } askama = { version = "0.14" }
axum = "0.8.0" axum = "0.8.0"
chrono = { version = "0.4.31", features = ["serde"] } chrono = { version = "0.4.31", features = ["serde"] }
pulldown-cmark = { version = "0.13" } pulldown-cmark = { version = "0.13" }
gray_matter = "0.3.0" gray_matter = "0.2.6"
rss = "2.0.7" rss = "2.0.7"
serde = "1.0.195" serde = "1.0.195"
serde_json = "1.0.111" serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] } tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.6.0", features = ["trace", "fs"] } tower-http = { version = "0.6.0", features = ["trace", "fs"] }
tower-livereload = "0.10.0" tower-livereload = "0.9.2"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
image = "0.25.6" image = "0.25.6"
@@ -24,7 +24,7 @@ anyhow = "1.0.86"
rayon = "1.10.0" rayon = "1.10.0"
syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] } syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] }
indoc = "2.0.5" indoc = "2.0.5"
askama_escape = "0.15.0" askama_escape = "0.13.0"
mime_guess = "2.0.5" mime_guess = "2.0.5"
[dev-dependencies] [dev-dependencies]