You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/concepts.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# 📖 Introduction to Agentic Workflows
2
2
3
-
Now that you've got your first workflow running, let's dive deeper into the concepts and capabilities of GitHub Agentic Workflows.
3
+
Now that you've [got your first workflow running](quick-start.md), let's dive deeper into the concepts and capabilities of GitHub Agentic Workflows.
4
4
5
5
GitHub Agentic Workflows represent a new paradigm where AI agents can perform complex, multi-step tasks in conjunction with your team automatically. They combine the power of AI with GitHub's collaboration platform to enable [Continuous AI](https://githubnext.com/projects/continuous-ai) — the systematic, automated application of AI to software collaboration.
6
6
@@ -31,20 +31,23 @@ Every agentic workflow has two main parts:
31
31
on: ...
32
32
permissions: ...
33
33
tools: ...
34
+
steps: ...
34
35
---
35
36
36
37
# Natural Language Instructions
37
38
Analyze this issue and provide helpful triage comments...
38
39
```
39
40
40
-
See [Workflow Structure](workflow-structure.md) for details on file layout and security.
41
+
One crucial difference from traditional agentic prompting is that GitHub Agentic Workflows can contain **both** traditional GitHub Actions steps and agentic natural language instructions. This allows the best of both worlds: traditional steps for deterministic actions, and agentic steps for flexible, context-aware AI-driven actions.
42
+
43
+
See [Workflow Structure](workflow-structure.md) and [Frontmatter Options](frontmatter.md) for details of file layout and configuration options.
41
44
42
45
## Understanding AI Engines
43
46
44
-
Agentic workflows are powered by different AI engines:
47
+
Agentic workflows are powered by different agentic AI engines:
45
48
46
-
-**Claude** (default) — Anthropic's AI model, excellent for reasoning and code analysis
47
-
-**Codex** (experimental) — OpenAI's code-focused model
49
+
-**Claude Code** (default) — Anthropic's AI engine, excellent for reasoning and code analysis
-**Continuous Research** — Stay current with industry developments
59
62
-**Continuous Quality** — Automated code review and standards enforcement
60
63
61
-
#### Demonstrator Research & Planning Workflows
64
+
**Demonstrator Research & Planning Workflows**
62
65
-[📚 Weekly Research](https://github.com/githubnext/agentics?tab=readme-ov-file#-weekly-research) - Collect research updates and industry trends
63
66
-[👥 Daily Team Status](https://github.com/githubnext/agentics?tab=readme-ov-file#-daily-team-status) - Assess repository activity and create status reports
64
67
-[📋 Daily Plan](https://github.com/githubnext/agentics?tab=readme-ov-file#-daily-plan) - Update planning issues for team coordination
65
68
-[🏷️ Issue Triage](https://github.com/githubnext/agentics?tab=readme-ov-file#️-issue-triage) - Triage issues and pull requests
This generates a `.lock.yml` file containing the actual GitHub Actions workflow. Both files should be committed to your repository.
86
89
90
+
The `.lock.yml` file contains the full configuration of the workflow, including the frontmatter and the compiled agentic steps, added security hardening and job orchestration. The `.md` file is the source of truth for authoring and editing.
0 commit comments