Skip to content

Commit

Permalink
Sort directory links; update blog metadata and descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Sep 25, 2024
1 parent 8a7d603 commit c87bdca
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
1 change: 1 addition & 0 deletions docs/src/components/DirectoryLinks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const { directory } = Astro.props
const pages = (
await getCollection("docs", (entry) => entry.id.startsWith(directory + "/"))
).filter(({ slug }) => slug !== directory)
.sort((a, b) => (a.data.sidebar.order ?? 0) - (b.data.sidebar.order ?? 0))
---

<CardGrid
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
---
title: Automatic Web Page Content Analysis
date: 2024-09-12
authors: [genaiscript, pelikhan]
tags:
- GenAIScript
- Web Content Analysis
- Automation
- AI
authors:
- genaiscript
- pelikhan
tags: content analysis, playwright, automation, GenAIScript, web
description: Learn how GenAIScript leverages the Playwright browser automation
library for efficient, automated analysis of web page content.

---

In this blog post, we'll dive into a practical example showcasing how to leverage GenAIScript for automatic web page content analysis. GenAIScript uses the [playwright](https://playwright.dev/) browser automation library which allows to load, interact and inspect web pages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
---
title: "Automate Git Commit Messages with GenAI"
title: Automate Git Commit Messages with GenAI
date: 2024-09-19
draft: true
tags: ["genai", "git", "automation", "typescript"]
tags: git, typescript, productivity, automation
authors: genaiscript
canonical_url: https://microsoft.github.io/genaiscript/blog/automate-git-commit-messages-with-genai
description: Discover how GenAI simplifies your Git workflow by automating
commit message generation based on your staged changes.

---

## Simplifying Your Git Workflow with GenAI
Expand Down
7 changes: 5 additions & 2 deletions docs/src/content/docs/blog/drafts/code-review-with-genai.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
---
title: "Code Review with GenAI"
title: Code Review with GenAI
date: 2024-09-19
draft: true
tags: ["GenAI", "Code Review", "Programming", "Development", "Automation"]
tags: code review, development, programming, automation
authors: genaiscript
canonical_url: https://microsoft.github.io/genaiscript/blog/code-review-with-genai
description: Dive into automated code review processes with GenAI, enhancing
developer efficiency and code quality.

---

## Introducing "Code Review with GenAI" 🧐
Expand Down
7 changes: 5 additions & 2 deletions docs/src/content/docs/blog/search-transform-genai.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
title: "Search and Transform"
title: Search and Transform
date: 2024-09-24
authors: genaiscript
tags: ["genai", "scripting", "automation"]
tags: search, transform, automation, scripting, productivity
canonical_url: https://microsoft.github.io/genaiscript/blog/search-transform-genai
description: Explore how GenAIScript automates the search and transformation of
patterns across multiple files, enhancing efficiency in development tasks.

---

Have you ever found yourself in a situation where you need to search through multiple files in your project, find a specific pattern, and then apply a transformation to it? It can be a tedious task, but fear not! In this blog post, I'll walk you through a GenAIScript that does just that, automating the process and saving you time. 🕒💡
Expand Down

0 comments on commit c87bdca

Please sign in to comment.