agentframework
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

AgentFramework

An elegant & efficient TypeScript metaprogramming API to build software agents

gzip size


🍭 Modernize: 100% for TypeScript. Side-effect free tree shaking compatible with ES2015.

Fast: Use CodeGen to minimize overheads. Faster than es6 Proxy.

🎯 Efficient: Well-designed and crafted api only has 1300 SLOC and 5.6kb after minzipped.

♻️ Clean: Transparent dynamic proxy. No prototype pollution. No reflect-metadata or any npm dependencies.

Supported Environment

Platform Version
Node.js 17, 16, 15, 14, 12, 10, 8
TypeScript 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.9, 3.8, 3.7, 3.6, 3.5, 3.4, 3.3, 3.2, 3.1, 3.0

Changelog

Date Version Status
2022-03-11 2.0.2 Stable
2019-02-27 1.0.0 Maintenance
2018-12-21 0.9.23 EOL
2017-06-30 0.5.12 EOL
2016-11-03 0.2.28 EOL

Install

npm i agentframework

Example code

import { agent, singleton } from 'agentframework';

class ComponentA {
	name = 'Agent Framework';
}

@agent()
class ProjectA {
	@singleton()
	private component!: ComponentA;

	constructor() {
		console.log(`WOW! You working on project ${this.component.name}!`);
	}
}

const project = new ProjectA();

console.log('Is it create from the ProjectA class?', project instanceof ProjectA);

Features

  • Add metadata to your code at design-time (using @decorator) or runtime (using Reflector api)
  • Access the metadata at runtime (using Reflector api)
  • AOP, dependence injection and dependence lookup

Projects

Agent Oriented Programming

Principle

PARADIGM INSPIRATION PRINCIPLE
Function Programming Math It transform data
OOP The world It describe things and the relationships between them
Agent Oriented Programming Human It actions like a human (AI)

Concepts

HUMAN AGENT FRAMEWORK DESCRIPTION
People Agent A class decorate with @agent attribute
Action Behavior Class method decorate with @action, @method or @behavior attribute
Belief Memory Private class field decorated with @state, @remember, @memory attribute
Environment Domain A container for agents, entities, services or artifacts
Autonomy Activation Timer, scheduler which based on environment conditions
Sociality Message Agent can communicate with other agent
Mobility Mobile Agent An agent can move from domain to domain with their belief unchanged

When use Agent Framework

  • You want to build software agents.
  • You want to use dependence injection or dependence lookup.
  • You want to build a framework which similar to Spring Framework but in JavaScript.
  • You want to build an abstract layer for a specific business domain in your organization.
  • You want to remove duplicated code and keep project codebase small and clean.
  • You need a powerful method to pre-process, post-process or modify system behaviors without touching existing code.

Agentframework 2.x milestones

  • [x] Breaking change: Remove I from interface name
  • [x] Breaking change: Remove Intializer. Use Interceptor instead
  • [x] MVP: Dependency injection/dependency lookup and Domain driven design support
  • [x] MVP: Improve unit test coverage rate
  • [x] COMPATIBILITY: Revise error types and message
  • [x] COMPATIBILITY: Revise Domain interface
  • [x] COMPATIBILITY: Revise embedded decorators
  • [ ] EPIC: Abstract data layer - mongodb 4.x
  • [ ] EPIC: Cross architecture web application development (Server, Serverless)
  • [ ] EPIC: Serverless support - AWS Lambda, Google Cloud Function, Azure Function, Alicloud Function Computing
  • [ ] EPIC: Bot development (Telegram)
  • [ ] Other: Example and references
  • [ ] Other: docs.agentframework.com
  • [ ] Other: agentframework.com

Agentframework 1.x milestones

  • [x] MVP: Reflection can access type information generated by tsc. tsc --emitDecoratorMetadata
  • [x] MVP: Reflection support both ES6 and ES2017 (Reflect.metadata)
  • [x] MVP: Share metadata across different agentframework library of same application
  • [x] MVP: Both agent or normal class can be used for dependence injection
  • [x] MVP: Add IInitializer to init a field property
  • [x] MVP: Interceptor can work with Initializer during dependence injection
  • [x] EPIC: Create agent without domain
  • [x] EPIC: Provide access to intercepted property value in constructor
  • [x] PERFORMANCE: Metadata only attribute, attribute without interceptor
  • [x] PERFORMANCE: Pre-compile class member interceptors to improve method call performance
  • [x] PERFORMANCE: Caching class constructor interceptors to reduce future class instance creation time.
  • [x] PERFORMANCE: Remove interceptor for @agent attribute to improve performance
  • [x] PERFORMANCE: Do not add proxy if the agent don't have interceptor
  • [x] PERFORMANCE: Remove ES6 Proxy if don't have field interceptor
  • [x] COMPATIBILITY: Move @inject and @ready decorator out from core
  • [x] COMPATIBILITY: GetPrototypeOf should return origin prototype
  • [x] COMPATIBILITY: Agent should works in extended classes
  • [x] COMPATIBILITY: instanceOf should works when compile to proxy
  • [x] COMPATIBILITY: Revise IInvocation Interface
  • [x] COMPATIBILITY: Revise IInitializer Interface
  • [x] COMPATIBILITY: Revise IInterceptor Interface
  • [x] COMPATIBILITY: Revise IAttribute Interface
  • [x] COMPATIBILITY: Revise Reflection Interface
  • [x] COMPATIBILITY: Revise Reflector Interface
  • [x] COMPATIBILITY: Revise Agent Options
  • [x] COMPATIBILITY: Revise Domain Interface (Domain is been completely moved to 2.0)

Special Thanks To:

JetBrains, creators of the IntelliJ IDEA, supports AgentFramework with one of their Open Source Licenses. IntelliJ IDEA is the recommended IDE for working with AgentFramework.

License

Copyright 2022 Ling Zhang!

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Package Sidebar

Install

npm i agentframework

Weekly Downloads

48

Version

2.0.2

License

Apache-2.0

Unpacked Size

71.1 kB

Total Files

7

Last publish

Collaborators

  • agentframework-admin