openagentflow 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/main/docs/assets/oaf-logo.svg" alt="OpenAgentFlow Logo" width="160"/>
2
+ <img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/master/docs/assets/oaf-logo.svg" alt="OpenAgentFlow Logo" width="160"/>
3
3
  </p>
4
4
 
5
5
  # OpenAgentFlow
@@ -11,13 +11,13 @@
11
11
  [![Target Runtime: LangGraph](https://img.shields.io/badge/runtime-LangGraph%20Python-orange.svg)](#multi-llm--runtime-integration)
12
12
  [![LLM Providers: Gemini | OpenAI | Anthropic](https://img.shields.io/badge/LLMs-Gemini%20%7C%20OpenAI%20%7C%20Anthropic-purple.svg)](#multi-llm--runtime-integration)
13
13
  [![VS Code Extension](https://img.shields.io/badge/VS%20Code-Syntax%20Support-007ACC.svg?logo=visualstudiocode)](https://marketplace.visualstudio.com/items?itemName=OpenAgentFlow.openagentflow-support)
14
- [![Documentation](https://img.shields.io/badge/docs-complete-blue.svg)](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/docs/index.md)
14
+ [![Documentation](https://img.shields.io/badge/docs-complete-blue.svg)](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/index.md)
15
15
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
16
16
 
17
17
  > *What OpenAPI is for REST APIs, OpenAgentFlow (`.oaf`) is for AI agent workflows.*
18
18
 
19
19
  <p align="center">
20
- <img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/main/docs/assets/demo.gif" alt="OpenAgentFlow Demo" width="800"/>
20
+ <img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/master/docs/assets/demo.gif" alt="OpenAgentFlow Demo" width="800"/>
21
21
  </p>
22
22
 
23
23
  ### ⚡ The 60-Second Example
@@ -150,16 +150,16 @@ If you prefer creating workflows from scratch in your own workspace without clon
150
150
  oaf run my-workflow.oaf --input data.json
151
151
  ```
152
152
 
153
- > 📖 **For the full guide, see [Documentation](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/docs/index.md)**.
153
+ > 📖 **For the full guide, see [Documentation](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/index.md)**.
154
154
 
155
155
  ---
156
156
 
157
157
  ## 📖 Documentation
158
158
 
159
159
  The complete documentation is available in our GitHub `docs/` directory, including:
160
- * **[Language Reference](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/docs/language/oaf-language.md):** Complete `.oaf` syntax.
161
- * **[Formal Specs](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/spec/SPEC.md):** EBNF grammar, semantic rules, and IR schema.
162
- * **[API & CLI Ref](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/docs/cli/cli-reference.md):** Programmatic API and command-line flags.
160
+ * **[Language Reference](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/language/oaf-language.md):** Complete `.oaf` syntax.
161
+ * **[Formal Specs](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/spec/SPEC.md):** EBNF grammar, semantic rules, and IR schema.
162
+ * **[API & CLI Ref](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/cli/cli-reference.md):** Programmatic API and command-line flags.
163
163
 
164
164
  ---
165
165
 
@@ -253,7 +253,7 @@ When compiling to LangGraph, the runtime automatically manages providers. You ca
253
253
 
254
254
  ## 🤝 Contributing
255
255
 
256
- We welcome contributions from developers, researchers, and engineers! Whether you want to pick up a [`good first issue`](https://github.com/OpenAgentFlow/openagentflow/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), help build our planned Phase 5 target adapters (**Microsoft AutoGen** or **CrewAI**), or propose language enhancements, please check out our detailed [Contributing Guide](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/main/CONTRIBUTING.md) to get started.
256
+ We welcome contributions from developers, researchers, and engineers! Whether you want to pick up a [`good first issue`](https://github.com/OpenAgentFlow/openagentflow/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), help build our planned Phase 5 target adapters (**Microsoft AutoGen** or **CrewAI**), or propose language enhancements, please check out our detailed [Contributing Guide](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/CONTRIBUTING.md) to get started.
257
257
 
258
258
  ---
259
259
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openagentflow",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "An open, portable specification for describing AI agent workflows using a human-readable text language.",
5
5
  "type": "module",
6
6
  "main": "compiler/index.js",